preg_match_all 代表<选项>;获取所有匹配的值

发布于 2024-10-08 09:19:21 字数 268 浏览 0 评论 0原文

这是字符串。

$string = <option class="abcd" value="1.5">Some Text with White Spaces</option>

我想使用 preg_match_all 或类似的东西获取所有匹配变量(1.5 & Some Text with White Spaces)。我很久以前就这样做过,但现在不记得了。希望你能帮忙...

Here is the string.

$string = <option class="abcd" value="1.5">Some Text with White Spaces</option>

I want to get all matching variables (1.5 & Some Text with White Spaces) using preg_match_all or something similar. I was doing this a long ago but I don't remember it now. Hope you can help...

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

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

发布评论

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

评论(1

尬尬 2024-10-15 09:19:21

我无法回答 html & Stack Overflow 上的正则表达式问题,但未提及请使用解析器 >。

但是,如果您真的热衷于正则表达式,您可以看到下面的内容。


如果您的字符串看起来像这样,那么您可以使用...

preg_match_all('/<option\sclass="[^"]*"\svalue="([^"]*)">([^>]*)<\/option>/', $string, $matches);

var_dump($matches);

$matches[1] 将具有 value 属性和 $matches[2] 将有文本节点。

I couldn't answer a html & regex question on Stack Overflow without mentioning please use a parser.

However, if you were really keen on a regex, you could see below.


If your strings look like that, then you could use...

preg_match_all('/<option\sclass="[^"]*"\svalue="([^"]*)">([^>]*)<\/option>/', $string, $matches);

var_dump($matches);

$matches[1] will have the value attribute and $matches[2] will have the text node.

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