从字符串中提取数字


332

我想从包含数字和字母的字符串中提取数字:

"In My Cart : 11 items"

我想在这里获取号码11或任何其他号码。


使用此$ string =“在我的购物车中:11个商品”; $ number = preg_replace(“ / [^ 0-9] {1,4} /”,'',$ string); //返回11
Shorabh

Answers:


363
$str = 'In My Cart : 11 12 items';
preg_match_all('!\d+!', $str, $matches);
print_r($matches);

2
如何在简单变量而不是Array中获得我的号码?
Bizboss,2011年

34
$ var = implode('',$ matches [0]);
Gaurav

2
@Bizboss同样,尝试$newstr = preg_replace('!\d+!', '', $str);。它将删除字符串中的所有数字。示例:$str = 'In My Cart : 11 12 items';将输出In My Cart : items
以太

77
这不是一种资源友好的方式。使用preg_replace("/[^0-9]/","",$string);filter_var($str, FILTER_SANITIZE_NUMBER_INT);
eapo

6
@eapo filter_var($str, FILTER_SANITIZE_NUMBER_INT);提取数字,加号减号。正则表达式仅提取数字!
PATROMO '16

535

如果只想过滤除数字以外的所有内容,最简单的方法是使用filter_var

$str = 'In My Cart : 11 items';
$int = (int) filter_var($str, FILTER_SANITIZE_NUMBER_INT);

56
数字前的破折号将被视为减号。
Elnur Abdurrakhimov '11

43
不只是编号。任何+/-都不会被截断。如果有,xxx-yyy-24你会得到的--24。您可以使用str_repleace(array('+','-'), '', $result)删除两个标志。
imclickingmaniac

4
@imclickingmaniac,您可以简单地max(0,filter_var($str, FILTER_SANITIZE_NUMBER_INT))使用数组和字符串替换来代替。
爱德华

2
使用max()还会在字符串中返回减号,希望这里是strreplace()。感谢您的提示。
Shiva Avula 2013年

26
abs((int) filter_var($str, FILTER_SANITIZE_NUMBER_INT));
MECU 2015年

300
preg_replace('/[^0-9]/', '', $string);

这应该做得更好!


10
我之所以喜欢它,是因为它返回的是一个字符串,而不是像preg_match_all的示例那样的数组,并且我喜欢它是因为我只想要数字,而不是filter_var示例所需要的加号或破折号。
Darrell Duane

43
请谨慎使用此方法:类似“在我的汽车中的价格:500.00将打印:50000
ErickBest 2013年

16
@ErickBest很好,考虑到问题是extract the numbers from a string-小数点不是数字!
rybo111'2

1
这是一个小问题,但您可能要使用单引号'而不是双引号"
CommandZ

16
preg_replace('/ [^ 0-9。] /','','abc1.22'); //返回小数1.22
zzapper 2015年


21

对于浮点数,

preg_match_all('!\d+\.?\d+!', $string ,$match);

感谢您指出错误。@mickmackusa


这实际上是错误的:)应该是'!\d*.?\d+!'
Yash

我宁愿?用作文字点的量词。我不希望浮点值包含多个小数点符号。具有讽刺意味的是,雅西的评论模式是错误的。点必须在其前面加一个斜杠以使其文字正确。
mickmackusa




6

您可以使用以下功能:

function extract_numbers($string)
{
   preg_match_all('/([\d]+)/', $string, $match);

   return $match[0];
}

\d字符类内部编写没有任何好处。由于您正在访问完整字符串匹配,因此将捕获组写入模式中没有任何意义。
mickmackusa

4
preg_match_all('!\d+!', $some_string, $matches);
$string_of_numbers = implode(' ', $matches[0]);

在这种特定情况下,爆裂的第一个参数表示“将matchs [0]中的每个元素都用一个空格分隔”。Implode不会在第一个数字之前或最后一个数字之后放置空格(或您的第一个自变量)。

其他需要注意的是$ matches [0]是找到的匹配数组(与该正则表达式匹配)的存储位置。

要进一步了解数组中其他索引的含义,请参见:http : //php.net/manual/en/function.preg-match-all.php



3
$value = '25%';

要么

$value = '25.025$';

要么

$value = 'I am numeric 25';
$onlyNumeric = filter_var($value, FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION);

这将仅返回数字值



3

按照此步骤将字符串转换为数字

$value = '$0025.123';
$onlyNumeric = filter_var($value, FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION);
settype($onlyNumeric,"float");

$result=($onlyNumeric+100);
echo $result;

另一种方法是:

$res = preg_replace("/[^0-9.]/", "", "$15645623.095605659");

0

其他方式(甚至是unicode字符串):

$res = array();
$str = 'test 1234 555 2.7 string ..... 2.2 3.3';
$str = preg_replace("/[^0-9\.]/", " ", $str);
$str = trim(preg_replace('/\s+/u', ' ', $str));
$arr = explode(' ', $str);
for ($i = 0; $i < count($arr); $i++) {
    if (is_numeric($arr[$i])) {
        $res[] = $arr[$i];
    }
}
print_r($res); //Array ( [0] => 1234 [1] => 555 [2] => 2.7 [3] => 2.2 [4] => 3.3 ) 

0

此脚本首先创建一个文件,然后将数字写入一行,如果获取数字以外的其他字符,则更改为下一行。最后,它再次将数字排序到列表中。

string1 = "hello my name 12 is after 198765436281094and14 and 124de"
f= open("created_file.txt","w+")
for a in string1:
    if a in ['1','2','3','4','5','6','7','8','9','0']:
        f.write(a)
    else:
        f.write("\n" +a+ "\n")
f.close()


#desired_numbers=[x for x in open("created_file.txt")]

#print(desired_numbers)

k=open("created_file.txt","r")
desired_numbers=[]
for x in k:
    l=x.rstrip()
    print(len(l))
    if len(l)==15:
        desired_numbers.append(l)


#desired_numbers=[x for x in k if len(x)==16]
print(desired_numbers)

-1

根据您的用例,也可以选择以下选项:

$str = 'In My Cart : 11 items';
$num = '';

for ($i = 0; $i < strlen($str); $i++) {

    if (is_numeric($str[$i])) {
        $num .= $str[$i];
    }
}

echo $num; // 11

尽管我同意使用正则表达式,或者filter_var()在所述情况下会更有用。


-1

对于utf8 str:

function unicodeStrDigits($str) {
    $arr = array();
    $sub = '';
    for ($i = 0; $i < strlen($str); $i++) { 
        if (is_numeric($str[$i])) {
            $sub .= $str[$i];
            continue;
        } else {
            if ($sub) {
                array_push($arr, $sub);
                $sub = '';
            }
        }
    }

    if ($sub) {
        array_push($arr, $sub); 
    }

    return $arr;
}

-1

如果您不知道数字是哪种格式?int或float,然后使用:

$string = '$125.22';

$string2 = '$125';

preg_match_all('/(\d+.?\d+)/',$string,$matches); // $matches[1] = 125.22

preg_match_all('/(\d+.?\d+)/',$string2,$matches); // $matches[1] = 125

-1

此功能还将处理浮点数

$str = "Doughnuts, 4; doughnuts holes, 0.08; glue, 3.4";
$str = preg_replace('/[^0-9\.]/','-', $str);
$str = preg_replace('/(\-+)(\.\.+)/','-', $str);
$str = trim($str, '-');
$arr = explode('-', $str);

在此过程中引入连字符完全没有必要。这个答案也没有解释它是如何工作的以及为什么您认为它是一个好主意。
mickmackusa
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.