如何使 preg_match 查找整个单词而不是单独的连字符单词?

发布于 2024-11-03 06:49:10 字数 157 浏览 4 评论 0原文

if (preg_match('#\b'.$rawword.'\b#i',$body)) {   

此代码查找整个单词,但如果它们是像“ABLE-BODIED”这样的连字符单词,它将分别查找 ABLE 和 BODIED。如何修改表达式以适应破折号?

if (preg_match('#\b'.$rawword.'\b#i',$body)) {   

This code finds whole words, but if they are a hyphen word like "ABLE-BODIED" it will find ABLE and BODIED separately. How can modify the expression to accommodate for the dash?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

揪着可爱 2024-11-10 06:49:10

您可以使用lookbehind 和lookahead 运算符。该运算符查看后面和后面但不匹配它们。

例如,使用 \b(? 查找不包含 -< 的 xyz 的整个单词/code> 之前或之后。

You can use lookbehind and lookahead operators. This operators looks in behind and after but not match them.

for example use \b(?<!-)xyz(?!-)\b for finding whole words of xyz that doesn't have - before or after.

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