fork download
  1. <?php
  2. $str= "HelloWorld:GoodbyeWorld:HiThere:";
  3.  
  4. function parseBadges($str) {
  5. return preg_split('/:/i', $str, null, PREG_SPLIT_NO_EMPTY);
  6. }
  7.  
  8. print_r(parseBadges($str));
Success #stdin #stdout 0.01s 24144KB
stdin
Standard input is empty
stdout
Array
(
    [0] => HelloWorld
    [1] => GoodbyeWorld
    [2] => HiThere
)