使用正则表达式匹配文件中的数据
我从中提取数据的文件包含以下信息
<"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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须使用
preg_match_all
函数:You have to use the
preg_match_all
function:键盘。
CodePad.