在第二个句号后裁剪字符串
在 PHP 中,我想裁剪以下句子:
“测试 1。测试 2。测试 3。”
并将其转换为 2 个字符串:
"Test 1. Test 2." 和 "Test 3."
我该如何实现这一目标?
我使用 strpos 吗?
非常感谢您的指点。
In PHP, I'd like to crop the following sentence:
"Test 1. Test 2. Test 3."
and transform this into 2 strings:
"Test 1. Test 2." and "Test 3."
How do I achieve this?
Do I use strpos?
Many thanks for any pointers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
要分开前两个句子,应该可以快速完成:
to separate the two first sentence, this should do it quick :
类似的事情?
Something like that?
您必须在“测试 2”之后剪切文本的主要原因是什么?而不是之前?最好的解决方案取决于您想要做什么以及您最终想要做什么
what is the main reason why you must cut the text after "Test 2." and not before ? the best solution depends on what you want to do and what you will eventually want to do with that