仅替换整个单词匹配项

发布于 2024-09-30 16:04:53 字数 154 浏览 1 评论 0原文

我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

述情 2024-10-07 16:04:53

您可以将 preg_replace 与考虑单词边界的正则表达式结合使用:

$output = preg_replace('/\b'.preg_quote($word, '/').'\b/', 'replacement', $str);

此处 < code>\b 是字边界断言。因此,仅当 if 出现在 $str 中并且前后有单词边界时,$word 的值才会被替换。

You can use preg_replace with a regular expression that takes the word boundary into account:

$output = preg_replace('/\b'.preg_quote($word, '/').'\b/', 'replacement', $str);

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.

在梵高的星空下 2024-10-07 16:04:53

您将能够更具体地使用 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

栖竹 2024-10-07 16:04:53

如果需要上下文相关的替换,则需要使用正则表达式版本的replace(),即preg_replace()

echo str_replace("quote", "NEWSTRING", $src_text);

echo preg_replace("/quote\b/", "NEWSTRING", $src_text);

If you need context sensitive replacement, you need to use regular expression version of replace() which is preg_replace().

echo str_replace("quote", "NEWSTRING", $src_text);

echo preg_replace("/quote\b/", "NEWSTRING", $src_text);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文