如何在正则表达式中查找特定模式的多个实例?

发布于 2025-01-07 19:06:10 字数 344 浏览 0 评论 0原文

目前(在 PHP 中)我有以下正则表达式模式:

\[(.*) (.*)=(.*)\]

这匹配 [doSomething limit=true]

最终结果是我的代码将解释该字符串并将其替换为编码返回的任何值。

但是,我的一些代码需要将多个变量发送到函数,例如:

[doSomething limit=true otherlimitation=false sendfile=1 title="hello there"]

如何使 (.)=(. )在正则表达式中可重复,以便它匹配发送的每个变量,包括函数的第一个(最重要的)名称?

Currently (in PHP) I have the following regex pattern:

\[(.*) (.*)=(.*)\]

This matches [doSomething limitation=true]

The end result being that my code will interpret that string and replace it with whatever value is coded to return for it.

However, some of my code needs multiple variables sent through to the function, for example:

[doSomething limitation=true otherlimitation=false sendfile=1 title="hello there"]

How can I make the (.)=(.) in the regex repeatable so that it matches every variable sent through including the first (most important) name of function?

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

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

发布评论

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

评论(1

不气馁 2025-01-14 19:06:10

以下方法可能适合您:

\[(.*) ((.*)=(.*))+\]

您可能还想用加号替换星号。目前,您的正则表达式会将 [ =] 匹配为有效字符串。

\[(.+) ((.+)=(.+))+\]

The following may work for you:

\[(.*) ((.*)=(.*))+\]

You may also want to replace your asterisks with plus-signs. Currently, your regex would match [ =] as a valid string.

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