PHP 中的正则表达式 (preg_match) 模式

发布于 2024-12-12 06:18:59 字数 377 浏览 0 评论 0原文

我创建了一个在 Dreamweaver 的正则表达式 Find 中工作的正则表达式模式,但是当放入 preg_match 模式时,它会失败。我破坏了 PHP (5.1.6) 正则表达式规则中的哪些内容,而这些规则在 Dreamweaver 的解释中是有效的?这是 PHP:

preg_match("/(\{a\})([a-zA-Z0-9{} .])+(\{/a\})/i", "{a}{900678}{abcde}{0}{0}{0}{/a}");

当前返回 false。如何修改该模式,使其与以 {a}anything gets in the middle{/a} 类型字符串开头的任何字符串匹配?我意识到上面的正则表达式不会匹配中间的“任何内容”,但我简化了调试表达式。

I created a regex pattern that works in Dreamweaver's regex Find, but when dropped into the pattern of preg_match, it fails. What am I breaking in the PHP (5.1.6) regex rules that otherwise works in Dreamweaver's interpretation? Here's the PHP:

preg_match("/(\{a\})([a-zA-Z0-9{} .])+(\{/a\})/i", "{a}{900678}{abcde}{0}{0}{0}{/a}");

Returns false currently. How can I modify the pattern so that it matches any string that begins with {a}anything goes in the middle{/a} type strings? I realize that the above regex will not match 'anything' in the middle, but I simplified the expression for debugging.

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

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

发布评论

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

评论(1

晌融 2024-12-19 06:18:59

/a 部分中的斜杠被解释为表达式的结束分隔符。您可能应该为整个模式使用另一个分隔符,例如:

preg_match("~(\{a\})([a-zA-Z0-9{} .])+(\{/a\})~i",
           "{a}{900678}{abcde}{0}{0}{0}{/a}");

查看实际操作

The slash in the /a part is being interpreted as the end delimiter of the expression. You should probably use another delimiter for the whole pattern, e.g.:

preg_match("~(\{a\})([a-zA-Z0-9{} .])+(\{/a\})~i",
           "{a}{900678}{abcde}{0}{0}{0}{/a}");

See it in action.

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