使用 PHP 从字符串中获取数字
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/11243447/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Get numbers from string with PHP
提问by Daniel Pairen
I have strings:
我有字符串:
$one = 'foo bar 4 baz (5 qux quux)';
$two = 'bar baz 2 bar';
$three = 'qux bar 12 quux (3 foo)';
$four = 'foo baz 3 bar (13 quux foo)';
How can I find the numeric digits in these strings?
如何在这些字符串中找到数字?
Maybe with function:
也许有功能:
function numbers($string){
// ???
$first = ?;
$second = ?;
}
For example:
例如:
function numbers($one){
// ???
$first = 4;
$second = 5;
}
function numbers($two){
// ???
$first = 2;
$second = NULL;
}
Best way for this maybe is regex, but how can I use this for my example? Maybe without regex?
最好的方法可能是正则表达式,但我如何在我的例子中使用它?也许没有正则表达式?
回答by DaveRandom
You can use regular expressionsfor this. The \descape sequencewill match all digits in the subject string.
您可以为此使用正则表达式。该\d转义序列将匹配的主题字符串中的所有数字。
For example:
例如:
<?php
function get_numerics ($str) {
preg_match_all('/\d+/', $str, $matches);
return $matches[0];
}
$one = 'foo bar 4 baz (5 qux quux)';
$two = 'bar baz 2 bar';
$three = 'qux bar 12 quux (3 foo)';
$four = 'foo baz 3 bar (13 quux foo)';
print_r(get_numerics($one));
print_r(get_numerics($two));
print_r(get_numerics($three));
print_r(get_numerics($four));
回答by Leri
You can do:
你可以做:
$str = 'string that contains numbers';
preg_match_all('!\d+!', $str, $matches);
print_r($matches);
回答by Greg
Here's my attempt WITHOUTa regular expression
这是我没有正则表达式的尝试
function getNumbers($str) {
$result = array();
// Check each character.
for($i = 0, $len = strlen($str); $i < $len; $i++) {
if(is_numeric($str[$i])) {
$result[] = $str[$i];
}
}
return $result;
}
$one = 'one two 4 three (5 four five)';
$two = 'one two 2 three';
$three = 'one two 12 three (3 four)';
$four = 'one two 3 three (13 four five)';
var_dump(getNumbers($one));
var_dump(getNumbers($two));
var_dump(getNumbers($three));
var_dump(getNumbers($four));
// Output:
// 输出:
array(2) {
[0]=>
string(1) "4"
[1]=>
string(1) "5"
}
array(1) {
[0]=>
string(1) "2"
}
array(3) {
[0]=>
string(1) "1"
[1]=>
string(1) "2"
[2]=>
string(1) "3"
}
array(3) {
[0]=>
string(1) "3"
[1]=>
string(1) "1"
[2]=>
string(1) "3"
}

