preg 替换查找关键字

发布于 2024-10-12 16:52:29 字数 363 浏览 4 评论 0原文

非常简单的预浸料替换,但我想不通。

我需要搜索关键字,例如:{this_is_a_key} 并将其替换为其他内容。

$text = 'this is a sentence with a {this_is_a_key} in it';
echo preg_replace('/\{\w{1}\}/i','keyword',$text);
//output should be
//## "this is a sentence with a keyword in it" ##//

到目前为止,这对我不起作用,我尝试了 ()[] 的组合,但没有运气

very simple preg replace but I can't think right.

I need to search for keywords such as: {this_is_a_key} and replace it with something else.

$text = 'this is a sentence with a {this_is_a_key} in it';
echo preg_replace('/\{\w{1}\}/i','keyword',$text);
//output should be
//## "this is a sentence with a keyword in it" ##//

so far this doesn't work for me and I have tried a combination of () and [] but no luck

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

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

发布评论

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

评论(1

枫以 2024-10-19 16:52:30

\w{1} 表示一个“单词字符”。请尝试使用 \w+[^\}]+ 代替。

此外,当使用 \w 时,不需要 i 修饰符。

\w{1} means one "word character". Try \w+ or [^\}]+ instead.

Also, when using \w, there's no need for the i modifier.

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