Question:Which of the following is the best way to split a string on the "-=-" pattern?
A They all are equally proper methods B str_split($string, strpos($string, "-=-")) C preg_split("-=-", $string); D explode("-=-" $string); E None
+ AnswerC
+ Report