Could anyone tell me how I can take this: (King's_Cross_St_Pancras, Farringdon, Hammersmith_&_City_Line)
And split it into:
array[0]: King's_Cross_St_Pancras
array[1]: Farringdon
array[2]: Hammersmith_&_City_Line
The regex should also account for < > non-word characters too. I have tried to make the regex using: "\b(<>&')?" .. this is however completely useless.
Please help