preg_match_all 关于数字的问题

发布于 2024-12-06 08:54:51 字数 191 浏览 0 评论 0原文

我有这一行:

preg_match_all("/<data_[0-9]>(.*?)<\/data_[0-9]>/",$xml_report,$xml);

由于某种原因,他只带了我前 10 行 0 到 9,但他没有带 10+ 行..

我需要更改 [0-9] 吗?

I have this line:

preg_match_all("/<data_[0-9]>(.*?)<\/data_[0-9]>/",$xml_report,$xml);

and for some reason he takes me only the 10 first rows 0 until 9 but he didn't take the 10+ rows..

what I need to change the [0-9] ?

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

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

发布评论

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

评论(3

小姐丶请自重 2024-12-13 08:54:51

[0-9] 仅选择数字 0-9 中的一次出现。使用 [0-9]+

+ 表示前面的一个或多个元素,而不是 *.,其中为零或更多。

[0-9] selects only one occurrence of the numbers 0-9. Use [0-9]+

The + means one or more of the preceding element vs * or . which is zero or more.

征棹 2024-12-13 08:54:51

如果您在 ] 之后附加 +(加号),它将查找多次出现的情况

preg_match_all("/<data_[0-9]+>(.*?)<\/data_[0-9]+>/",$xml_report,$xml);

if you append + (plus) after ] it'll find for multiple occurences

preg_match_all("/<data_[0-9]+>(.*?)<\/data_[0-9]+>/",$xml_report,$xml);
早茶月光 2024-12-13 08:54:51

您只检查该数字是否出现一次,请尝试以下操作:

preg_match_all("/<data_[0-9]+>(.*?)<\/data_[0-9]+>/",$xml_report,$xml);

You only check for one occurence of the number, try this:

preg_match_all("/<data_[0-9]+>(.*?)<\/data_[0-9]+>/",$xml_report,$xml);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文