作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这样一个字符串:
$string = 'e.g. 25.32';
我只想拉出数字(25.32)
数字周围的文本可能是任何非数字。
最佳答案
你可以使用类似的东西:
<?php
$str = "e.g. 25";
$val = (int)$str;
?>
但这不是最好的解决方案。
“更强”和通用的替代方案是......
代码:(已更新)
<?php
$str = "e.g. 25.32";
preg_match("/([0-9]+[\.,]?)+/",$str,$matches);
$val = $matches[0];
echo $val;
?>
输出:
25.32
作为函数:(已更新)
<?php
function getInt($str)
{
preg_match("/([0-9]+[\.,]?)+/",$str,$matches);
return $matches[0];
}
?>
用法:
<?php
$val = getInt("e.g. 25.32");
?>
关于php - 如何仅将混合的 PHP 字符串转换为数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10156267/
我是一名优秀的程序员,十分优秀!