文本字符串的内容分离
我将这个 "¶ms=&offer=art-by-jeremy-johnson"
存储在我的数据库中。
是否有任何函数/方法可以使用上述内容作为输入值来获取 "Art by Jeremy Johnson"
的输出。应该仅在运行时将其更改为输出“Art by Jeremy Johnson”
。
这可以在 PHP 中完成吗?
请帮忙。
I have this "¶ms=&offer=art-by-jeremy-johnson"
stored in my data base.
Is there any function / method to get the output as "Art by Jeremy Johnson"
using the above as the input value. this should be changed to the output "Art by Jeremy Johnson"
only on the runtime.
can this be done in PHP.
Please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在Java中,我想你可以使用
lastIndexOf
来获取等号的最后一个索引,并获取字符串的其余部分(使用substring
)。In Java, I guess you can just use
lastIndexOf
to get the last index of the equals sign, and get the remainder of the string (usingsubstring
).如果我理解得很好,你不想将某些单词大写。
这是一种方法:
输出:
If I understand well you want to not capitalized some words.
Here is a way to do it :
output: