PHP 剥离字符串
我想删除 - 之前字符串中的所有内容,并保留之后的内容。 例如:
15.11-101
我想删除 15.11 并保留 101。我尝试了一些不同的方法,但似乎无法使其工作,如果有人可以帮助我,那就太棒了:)
干杯
Leanne
I would like to strip everything in a string before a - and leave what's after that. For example:
15.11-101
I want to strip 15.11 and leave 101. I've tried a few different things, but can't seem to get it working, if anyone could help me out, that'd be fantastic :)
Cheers
Leanne
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以使用这样的东西:
You could use something like this:
假设它只出现一次,您可以使用 explode 函数。
这应该是最快的方法。
assuming it appears only once, you can use the explode function.
This should be the fastest way.