通过lookbehind和lookahead查找 preg_match_all

发布于 2024-10-16 17:44:11 字数 305 浏览 2 评论 0原文

我当前行

preg_match_all('/(?<=, ")<b>[\d\D]+(?="\)\;})/',$str,$matches);

$str 等于

906), "tadam tadam 393943");});

由于某种原因,它找不到匹配项,怎么样?

更新
为了使其正常工作,我需要将 U 添加到
正则表达式的末尾,所以它不会贪婪......
想想吧。

I have the current line

preg_match_all('/(?<=, ")<b>[\d\D]+(?="\)\;})/',$str,$matches);

where as $str is equal to

906), "<b>tadam tadam 393943</b>");});

for some reason it won't find matches, how is that?

UPDATE
In order for it to work I needed to add U at
the end of the regex, so it wouldn't be greedy...
go figure.

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

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

发布评论

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

评论(1

微暖i 2024-10-23 17:44:11

它确实匹配,您只需用括号指定组:

preg_match_all('/(?<=, ")(<b>[\d\D]+)(?="\)\;})/',$str,$matches);

这样就可以通过 $matches[1][ 访问匹配 [\d\D]+ 的片段0]

It does match, you just have to specify the group with parentheses:

preg_match_all('/(?<=, ")(<b>[\d\D]+)(?="\)\;})/',$str,$matches);

So that the fragment matching <b>[\d\D]+ can be accessed via $matches[1][0].

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