PHP 中的正则表达式 (preg_match) 模式
我创建了一个在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
/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.:See it in action.