<?php$regex = '~\d{4}\h\d{9}~';$str = '0521 123456789';preg_match($regex, $str, $match);print_r($match);
Standard input is empty
Array ( [0] => 0521 123456789 )
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!