Using preg_split on PHP, I want to separate letters and numbers, and ignore others (symbols, tab, space, etc). For example:
"A/BC 1" => array("A","BC","1")
"A1-BCD/2" => array("A","1","BCD","2")
"A1BC23-45" => array("A","1","BC","23","45"), not array("A1BC23","45")
"ABC###123" => array("ABC","123")
"AB+C^12/34" => array("AB","C","12","34")
What pattern must be written?