fork download
  1. <?php
  2. $regex = '~\d{4}\h\d{9}~';
  3. $str = '0521 123456789';
  4. preg_match($regex, $str, $match);
  5. print_r($match);
Success #stdin #stdout 0.02s 52432KB
stdin
Standard input is empty
stdout
Array
(
    [0] => 0521 123456789
)