fork download
  1. <?php
  2.  
  3. $str = 'a-1 90 b55 0 -4 4 c9';
  4. $array = preg_split('#(?=[abc])#',$str, -1, PREG_SPLIT_NO_EMPTY);
  5. print_r($array);
Success #stdin #stdout 0.02s 24516KB
stdin
Standard input is empty
stdout
Array
(
    [0] => a-1 90 
    [1] => b55 0 -4 4 
    [2] => c9
)