Trying to split a string, but I don't want to "remove" what I'm searching for...
The string Looks like this:
MDVB, 94010, (555) 555-5555, KHII, 94015, (555) 555-5555, POONHY, 94010, (555) 555-5555,
I want to split the string after the phone number, but I don't want to remove the number...
Right now, I have this:
preg_split("/\(? (\d{3})? \)? (?(1) [\-\s] ) \d{3}-\d{4}/x", $string)
But that outputs:
Array
(
[0] => MDVB, 94010,
[1] => KHII, 94015,
[2] => POONHY, 94010,
)
I thought preg_split was the thing to use... Is there something else I should be using?