fork(5) download
  1. <?php
  2.  
  3. // your code goes here
  4.  
  5. $str = 'Hello 48 and good3 58 see you';
  6. $index = -1;
  7. if(preg_match("#\d\D+$#", $str, $matches, PREG_OFFSET_CAPTURE)) {
  8. $index = $matches[0][1];
  9. }
  10.  
  11. echo $index;
  12.  
  13.  
Success #stdin #stdout 0.02s 24192KB
stdin
Standard input is empty
stdout
20