PHP提取字符串中的数字
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP提取字符串中的数字相关的知识,希望对你有一定的参考价值。
function number($str) { return preg_replace(‘/\D/s‘, ‘‘, $str); } // echo 123456 echo number(‘Hello 123 world 456 !!‘);
//支持小数 function number($str) { return preg_replace(‘/[^\.0123456789]/s‘, ‘‘, $str); }
以上是关于PHP提取字符串中的数字的主要内容,如果未能解决你的问题,请参考以下文章
提取并显示从 PHP 中的文本文件中分隔的所有 10 位数字逗号