使用 preg_match_all 进行嵌套括号

发布于 2024-10-29 23:38:25 字数 377 浏览 1 评论 0原文

我有一个像这样的字符串:

This is a {{text}} for {{testing}} PHP {{regular expression}}

我使用以下模式来获取包含 {{text}} 、 {{testing}} 的数组, {{正则表达式}}

/\{\{.+\}\}/

但它返回一个只有 1 个元素的数组:

"{{text}} for {{testing}} php {{正则表达式}}"

也尝试了这个:

/\{\{(?R)|.+\}\}/

但我得到了相同的结果。

这个模式有什么问题吗?

谢谢。

I have a string like this:

This is a {{text}} for {{testing}} PHP {{regular expression}}

I use the following pattern to get an array containing {{text}} , {{testing}} , {{regular expression}}

/\{\{.+\}\}/

But it returns an array with only 1 element:

"{{text}} for {{testing}} php {{regular expression}}"

Also tried this one:

/\{\{(?R)|.+\}\}/

But I get the same result.

What's wrong with this pattern?

Thanks.

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

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

发布评论

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

评论(2

春风十里 2024-11-05 23:38:25

尝试使用 /\{\{.+?\}\}/,注意 ?,原来是贪婪的,这意味着它将匹配尽可能多的字符,如果你有 .+这意味着将从第一个 { 到最后一个 }。

+?*?+* 的非贪婪版本。

Try using /\{\{.+?\}\}/, notice the ?, the original is greedy, that means it will match as many characters as it can, and if you have .+ it means it will go from the first { to the last }.

The +?, *? are the non-greedy versions of + and *.

遮了一弯 2024-11-05 23:38:25

我认为更快的解决方案是正则表达式 /\{\{([^}]+)\}\}/ ,因为非贪婪量词逐字母获取,直到到达右括号,而此正则表达式第一次尝试就吃掉右括号内的所有东西。

另外编辑

,我认为OP希望使用匹配的结果,因此在 [^}]+ 周围添加了匹配的括号。

I think faster solution would be the regex /\{\{([^}]+)\}\}/, because non-greedy quantifier gets letter by letter until it reach right bracket while this regex eats everything up to right bracket on first try.

EDIT

additionally, I think the OP want to work with matched result, so added matching parentheses around [^}]+.

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