编程语言
首页 > 编程语言> > 从php中的字符串中提取正负浮点数

从php中的字符串中提取正负浮点数

作者:互联网

对于php我必须从字符串中提取浮点数.我是regex的新手,但在大多数情况下我找到了一个对我有用的解决方案:

Extract floating point numbers from a string in PHP

$str = '152.15 x 12.34 x 11mm';
preg_match_all('!\d+(?:\.\d+)?!', $str, $matches);
$floats = array_map('floatval', $matches[0]);
print_r($floats);

唯一的问题是负值;有人可以改变我的表达方式,负数也包括在内吗?

谢谢!

解决方法:

-?\d+(?:\.\d+)?

这应该为你做.

$re = "/-?\\d+(?:\\.\\d+)?/m"; 
$str = "4.321 -3.1212"; 
$subst = "coach"; 

$result = preg_replace($re, $subst, $str);

标签:php,regex,floating-point,negative-number
来源: https://codeday.me/bug/20190623/1273571.html