PHP 提取以句点分隔的文本
我的文本格式如下:
123232.23
43438282.00
我想提取它们并将其存储到两个变量 $dollar 和 $cent 中。
第一个文本的预期结果如下:
$dollar = '123232'
$cent = '23'
如何使用正则表达式实现该目标 在 PHP 中。
I have texts in the format:
123232.23
43438282.00
I want to extract and store them into two variables $dollar and $cent.
Desired result will be as follows for the first text:
$dollar = '123232'
$cent = '23'
How can I achieve that using regex in PHP.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
为什么不直接使用 explode 与 列表
why not just use explode with list
这是其正则表达式:
Here is the regular expression for this:
如果您只有单个字符串,则可以使用简单的爆炸函数,但如果文本文件中有多个图形并且您想要提取它们,则可以执行如下操作。
对于第一个分隔符,我使用了换行符“\n”。您可以将其更改为适合您的内容。
这将解析每个数字并输出类似于以下内容的内容:
You can use a simple explode function for it if you have only single individual strings, but if you have multiple figures in a text file and you want to extract them, you do something like this below.
For the first delimiter I used a newline character `\n. You can change it to what fits you.
This would parse each or the figures and output something similar to this below :