fork(1) download
  1. <?php
  2.  
  3. $s = "SW1A 1AA";
  4. preg_match_all('~[a-zA-Z]+|\d+|[^\da-zA-Z]+~', $s, $chunks);
  5. print_r($chunks[0]);
Success #stdin #stdout 0.01s 82944KB
stdin
Standard input is empty
stdout
Array
(
    [0] => SW
    [1] => 1
    [2] => A
    [3] =>  
    [4] => 1
    [5] => AA
)