<?php

// your code goes here

$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;

