将除一个单词之外的所有字符替换为空格
$string = 'onetwothreefourfive';
如何将其变成?
$string = ' three ';
当我的输入是三
时,
$string = 'onetwothreefourfive';
How can I turn this into
$string = ' three ';
When my input is three
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
无需使用粗略的字符串操作,正则表达式来救援!
有关使用内容的详细信息,如果有任何不清楚的地方,请查看 PCRE 模式语法 章节PHP 手册。
No need to use crude string manipulation, regex to the rescue!
For details on what is used, if anything is unclear, check out the PCRE Pattern Syntax chapter of the PHP manual.
未经测试,不处理大海捞针,YMMV,yada yada yada。
not tested, doesn't handle multiple needles in the haystack, YMMV, yada yada yada.
无需使用昂贵和/或复杂的正则表达式:
经过测试并可与大海捞针中的多个针一起使用。
No need to use expensive and/or complicated regex:
Tested and works with multiple needles in the haystack.