为什么这个正则表达式不起作用?

发布于 2024-12-12 06:20:38 字数 221 浏览 0 评论 0原文

我想获取这两个 div 标头之间的任何数据,下面的代码应该可以工作,有什么我没有看到的吗?

preg_match_all('$\<div class\=\"productDescriptionWrapper\"\>(.*?)\<div class\=\"emptyClear\"\>$', $source, $match);

提前致谢!

I want to grab any data between these two div headers, and the code below should work, is there something I am not seeing?

preg_match_all('$\<div class\=\"productDescriptionWrapper\"\>(.*?)\<div class\=\"emptyClear\"\>

Thanks in advance!

, $source, $match);

Thanks in advance!

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

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

发布评论

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

评论(1

红衣飘飘貌似仙 2024-12-19 06:20:38

Cory,通常您应该使用 DOMDocument 来执行此操作。使用正则表达式解析 html 并不被认为是好的做法,因为它包含太多隐藏的愚蠢行为并且过于复杂。

http://php.net/manual/en/class.domdocument.php

Cory, typically you should be using DOMDocument to do this. Using regex to parse html is not considered good practice because it contains so many hidden follies and overcomplicates.

http://php.net/manual/en/class.domdocument.php

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