I have a string
$str = "101WE3P-1An Electrically-Small104TU5A-3,Signal-Interference Duplexers Gomez-GarciaRobertoTU5A-3-01"
I want to split this string by the numbers, eg:"101WE3P-1An.... "should be first element, "104TUA..." should be second element?
Somebody wrote me the following code in my previous question preg_match to match substring of three numbers consecutively? some little minutes ago:
$result = preg_split('/^\d{3}$/', $page, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY);
Baseline is i want to match three digited number followed by any no of capitals, followed by anything including \t ? Thanks in advance.