在匹配单词的开头拆分字符串
我试图找出什么函数可以分割给定的字符串,因此我想出了一个以匹配的单词开头的子字符串和另一部分。自从我开始搜索以来已经有一段时间了,我感到绝望,有这么多关于分割字符串的方法的函数,我只是希望你的帮助找出进行这种分割的最佳方法。
I'm trying to find out what function can split a given string so I come up with one substring beginning with the matched word and the other part. It's got a bit of a long since I started searching and I feel desperate, well so many functions on ways to split a string I just want your help to figure out what's the best way to do this splitting.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
PHP 的 strstr 可以简单地为您做到这一点
用法是:
如果您正在运行 PHP 5.3 来获取该部分在搜索词之前,您可以使用与以下相同的功能:
PHP's strstr can do this for you simply
Usage is:
If you're running PHP 5.3 to get the part before the search term you can use the same function as:
尝试 explode() 或 preg_split()
try explode() or preg_split()
有几种分割字符串的方法。我不确定你到底想要什么,但我建议你检查 preg_split< /a> 和 爆炸。
There are a few ways to split a string. I'm not sure what you exactly want, but I would advise you to check preg_split and explode.