使用正则表达式匹配文件中的数据

发布于 2024-11-29 12:55:53 字数 349 浏览 0 评论 0原文

我从中提取数据的文件包含以下信息

<"DATA" 10.21                         
^"DATA" 81.39                         
_"DATA" 38.71                         
"DATA" 84.19                          

使用 preg_match,如何从每个文件中提取值?

我尝试了 $r = '/<"DATA" (.+?)/'; 但它没有给我数字。

有人知道提取这些数字的正确正则表达式吗?

提前致谢!

The file I am pulling the data from consists of the following information

<"DATA" 10.21                         
^"DATA" 81.39                         
_"DATA" 38.71                         
"DATA" 84.19                          

Using preg_match, how can I pull the values from each?

I tried $r = '/<"DATA" (.+?)/'; but it didn't give me the numbers.

Anyone know the correct regex to pull these numbers?

Thanks in advance!

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

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

发布评论

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

评论(2

虐人心 2024-12-06 12:55:53

您必须使用 preg_match_all 函数:

preg_match_all('/^[<^_ ]"DATA" (\d+\.\d+)$/m', $string, $matches);
// look in $matches

You have to use the preg_match_all function:

preg_match_all('/^[<^_ ]"DATA" (\d+\.\d+)$/m', $string, $matches);
// look in $matches
初雪 2024-12-06 12:55:53
preg_match_all('/^\s*.?"DATA" (\d+)\.(\d+)\s*$/m', $str, $matches);

键盘

preg_match_all('/^\s*.?"DATA" (\d+)\.(\d+)\s*$/m', $str, $matches);

CodePad.

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