php preg_replace 模式

发布于 2024-10-14 21:33:50 字数 167 浏览 5 评论 0原文

我需要帮助我的 preg_replace 模式:

我想替换括号 [] 之间的文本,而且还替换括号内的文本,而不仅仅是直到第一个 [.[ .].....] 和相同的模式,但仅替换这些括号内的数字。

有什么想法吗?

I need a hand on my preg_replace pattern:

I want to replace the texts between brackets [] but also inside brackets and not only until the first one [.[.].....] and the same pattern but to replace only numbers inside those brackets.

any idea?

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

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

发布评论

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

评论(1

闻呓 2024-10-21 21:33:50

尝试这个正则表达式:

$re = '#\[(?:.*?(?0))*.*?\]#'

这将匹配一个 [...] 对,该对本身可能包含一个或多个 [...] 对,并且它们之间有任何字符。这是通过在模式中使用递归来完成的((?0)再次调用该模式)。

preg_match($re, '[.[.]....]', $m);
print_r($m);

// Output:
// Array
// (
//    [0] => [.[.]....]
// )

Try this regex:

$re = '#\[(?:.*?(?0))*.*?\]#'

This will match a [...] pair, which may itself contain one or more [...] pairs, with any characters between them. This is done by using recursion in the pattern (the (?0) calls the pattern again).

preg_match($re, '[.[.]....]', $m);
print_r($m);

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