Question : With regards to correlated subqueries does anybody know what the logical query processing order?

With regards to correlated subqueries does anybody know what the logical query processing order?

Answer : With regards to correlated subqueries does anybody know what the logical query processing order?

If your address is just a simple string (no '\n's in it) then this regex will work
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
<?php


     $test = "dasdas, asdasd, 10 the high st, as dsad, asd as, asd asd,sdsad";
     
     $pattern = '/^[^0-9]+([0-9]{1}).+$/';

     preg_match( $pattern, $test, $matches, PREG_OFFSET_CAPTURE );

     echo "First digit at position " . $matches[1][1];
?>

Outputs 

First digit at position 16
Random Solutions  
 
programming4us programming4us