我想从包含数字和字母的字符串中提取数字,如:
"In My Cart : 11 items"
我想在这里得到号码11
或任何其他号码。
答案 0 :(得分:470)
如果您只想过滤除数字以外的所有内容,最简单的方法是使用filter_var:
$str = 'In My Cart : 11 items';
$int = (int) filter_var($str, FILTER_SANITIZE_NUMBER_INT);
答案 1 :(得分:312)
$str = 'In My Cart : 11 12 items';
preg_match_all('!\d+!', $str, $matches);
print_r($matches);
答案 2 :(得分:251)
preg_replace('/[^0-9]/', '', $string);
这应该做得更好..!
答案 3 :(得分:69)
使用preg_replace
:
$str = '(111) 111-1111';
$str = preg_replace('/\D/', '', $str);
echo $str;
输出:1111111111
答案 4 :(得分:18)
对于浮点数,
preg_match_all('!\d+\.*\d*!', $string ,$match);
请参阅我对更新的正则表达式的评论。
答案 5 :(得分:8)
我没有这方面的功劳,但我只需要分享它。这个正则表达式将从字符串中获取数字,包括小数点/位数,以及逗号:
/((?:[0-9]+,)*[0-9]+(?:\.[0-9]+)?)/
引自此处:
php - regex - how to extract a number with decimal (dot and comma) from a string (e.g. 1,120.01)?
答案 6 :(得分:7)
$str = 'In My Cart : 11 12 items';
$str = preg_replace('/\D/', '', $str);
echo $str;
答案 7 :(得分:6)
您可以使用preg_match:
$s = "In My Cart : 11 items";
preg_match("|\d+|", $s, $m);
var_dump($m);
答案 8 :(得分:4)
您可以使用以下功能:
function extract_numbers($string)
{
preg_match_all('/([\d]+)/', $string, $match);
return $match[0];
}
答案 9 :(得分:2)
preg_match_all('!\d+!', $some_string, $matches);
$string_of_numbers = implode(' ', $matches[0]);
在这个特定情况下内爆的第一个参数说“将matches [0]中的每个元素与一个空格分开。” Implode不会在第一个数字之前或最后一个数字之后放置一个空格(或者你的第一个参数是什么)。
需要注意的是,$ matches [0]是存储找到的匹配数组(与此正则表达式匹配)的位置。
有关数组中其他索引的详细信息,请参阅:http://php.net/manual/en/function.preg-match-all.php
答案 10 :(得分:2)
试试这个,使用 preg_replace
$string = "Hello! 123 test this? 456. done? 100%";
$int = intval(preg_replace('/[^0-9]+/', '', $string), 10);
echo $int;
<强> DEMO 强>
答案 11 :(得分:0)
使用 sscanf 的替代解决方案:
$str = "In My Cart : 11 items";
list($count) = sscanf($str, 'In My Cart : %s items');
答案 12 :(得分:0)
由于您的字符串中只有1个数字要隔离,因此我将认可并亲自将filter_var()
与FILTER_SANITIZE_NUMBER_INT
一起使用。
echo filter_var($string, FILTER_SANITIZE_NUMBER_INT);
一种有效的技巧,因为只有一个数字值,并且整数前的唯一字符是字母数字,冒号或空格,是将ltrim()
与字符掩码一起使用,然后将其余字符串转换为整数。
$string = "In My Cart : 11 items";
echo (int)ltrim($string, 'A..z: ');
// 11
如果由于某种原因有多个整数值,并且您想获取第一个整数,那么正则表达式将是一种直接的技术。
echo preg_match('/\d+/', $string, $m) ? $m[0] : '';
答案 13 :(得分:0)
按照此步骤将字符串转换为数字
$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");
答案 14 :(得分:0)
我们可以像
那样从中提取int$string = 'In My Car_Price : 50660.00';
echo intval(preg_replace('/[^0-9.]/','',$string)); # without number format output: 50660
echo number_format(intval(preg_replace('/[^0-9.]/','',$string))); # with number format output :50,660
演示:http://sandbox.onlinephpfunctions.com/code/82d58b5983e85a0022a99882c7d0de90825aa398
答案 15 :(得分:0)
$value = '25%';
或
$value = '25.025$';
或
$value = 'I am numeric 25';
$onlyNumeric = filter_var($value, FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION);
这将仅返回数字值
答案 16 :(得分:0)
此功能还将处理浮点数
$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);
答案 17 :(得分:0)
如果您不知道数字是哪种格式? 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
答案 18 :(得分:-1)
其他方式(甚至是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 )
答案 19 :(得分:-1)
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)
答案 20 :(得分:-2)
对于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;
}
答案 21 :(得分:-2)
根据您的使用情况,这也可能是一个选项:
<select ng-model="myFixedSelection">
<optgroup ng-repeat="group in attrModel track by $index" label="{{group.Key.Name}}">
<option ng-repeat="value in group.Value track by $index" >{{ value }}</option>
</optgroup>
</select>
虽然我同意正则表达式或$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
在所述情况下会更有用。