PHP中最后一位的PHP位置

时间:2015-04-30 15:57:01

标签: php regex

寻找一些正则表达式来返回字符串的最后一个数字位置

$str = '1h 43 dw1r2 ow';  //Should return 10
$str = '24 h382';  //Should return 6
$str = '2342645634';  //Should return 9
$str = 'Hello 48 and good3 58 see you';  //Should return 20

这样做但是我正在寻找最快的方法(例如正则表达式?)

function funcGetLastDigitPos($str){

    $arrB = str_split($str);

    for($k = count($arrB); $k >= 0; $k--){

        $value =    $arrB[$k];
        $isNumber = is_numeric($value);

        //IF numeric...
        if($isNumber) {

            return $k;
            break;
        }
    }

}

3 个答案:

答案 0 :(得分:7)

你可以找到没有数字的字符串的最后部分,计算它,然后从整个字符串的长度中减去它。

$str = '1h 43 dw1r2 ow';  //Should return 10
echo lastNumPos($str); //prints 10
$str = '24 h382';  //Should return 6
echo lastNumPos($str); //prints 6
$str = '2342645634';  //Should return 9
echo lastNumPos($str);//prints  9
$str = 'Hello 48 and good3 58 see you';  //Should return 20
echo lastNumPos($str); //prints 20


function lastNumPos($string){
    //add error testing here

    preg_match('{[0-9]([^0-9]*)$}', $string, $matches);
    return strlen($string) - strlen($matches[0]);
}

答案 1 :(得分:3)

您可以在preg_match中使用PREG_OFFSET_CAPTURE标志来捕获索引以及匹配..

$str = 'Hello 48 and good3 58 see you';
$index = -1;
if(preg_match("#\d\D*$#", $str, $matches, PREG_OFFSET_CAPTURE)) {
    $index = $matches[0][1];
}

echo $index; //returns index if there is a match.. else -1

请参阅working demo

答案 2 :(得分:0)

如果您需要节省空间,请尝试这不是一个注册表,但是应该可以在三元语句中弹出。

$a=is_numeric(substr($str, -1));
if($a){
    $k=substr($str, -1);
}else{
    $k='';
}
echo $k;