仅替换整个单词匹配项
我的 str_replace 函数一直有问题,如果我尝试替换单词“quote”,它也会替换单词“quoted”的匹配部分,这是不需要的。
有什么建议吗?
我正在使用词汇表文件来获取单词并将其传递到一个数组中,然后打开一个我需要用词汇表单词进行调制的 html 文件。
I have been having a problem with the str_replace function, if I try to replace the word 'quote' it also replaces the matching part of the word 'quoted' which is not desired.
any suggestions ?
I am using glossary file to get the words from and pass it into an array, then open an html file that I need to modulate with glossary words.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以将
preg_replace
与考虑单词边界的正则表达式结合使用:此处 < code>\b 是字边界断言。因此,仅当 if 出现在
$str
中并且前后有单词边界时,$word
的值才会被替换。You can use
preg_replace
with a regular expression that takes the word boundary into account:Here
\b
are word boundary assertions. So the value of$word
is only replaced if if occurs in$str
with a word boundary before and after it.您将能够更具体地使用 preg_replace:
http://php.net/手册/en/function.preg-replace.php
You will be able to be more specific with preg_replace:
http://php.net/manual/en/function.preg-replace.php
如果需要上下文相关的替换,则需要使用正则表达式版本的replace(),即
preg_replace()
。If you need context sensitive replacement, you need to use regular expression version of replace() which is
preg_replace()
.