首页 > 代码库 > PHP提取字符串中的数字

PHP提取字符串中的数字

function number($str){    return preg_replace(‘/\D/s‘, ‘‘, $str);}// echo 123456echo number(‘Hello 123 world 456 !!‘);
//支持小数function number($str){return preg_replace(‘/[^\.0123456789]/s‘, ‘‘, $str);}

 

PHP提取字符串中的数字