我有字符串:
$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)';
如何在这些字符串中找到数字?
也许有功能:
function numbers($string){
// ???
$first = ?;
$second = ?;
}
例如:
function numbers($one){
// ???
$first = 4;
$second = 5;
}
function numbers($two){
// ???
$first = 2;
$second = NULL;
}
最好的方法可能是正则表达式,但我怎样才能在我的例子中使用它呢?也许没有正则表达式?