对于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);
唯一的问题是负面价值;有人可以改变我的表达方式,负数也包括在内吗?
谢谢!
答案 0 :(得分:4)
-?\d+(?:\.\d+)?
这应该为你做。
$re = "/-?\\d+(?:\\.\\d+)?/m";
$str = "4.321 -3.1212";
$subst = "coach";
$result = preg_replace($re, $subst, $str);