FROM: START 123 456 789 START abc def ghi START xyz
I want to get three results:
START 123 456 789
START abc def ghi
START xyz
You can try:
(START[a-z\s\d]+)
which matches START followed by any lowercase letter, digit or space.
However, I'm not sure why you are not using a simple split().