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

时间:2015-06-25 19:32:03

标签: php regex floating-point negative-number

对于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);

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

谢谢!

1 个答案:

答案 0 :(得分:4)

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

这应该为你做。

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

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