in reply to Re: Regex to extract multiple occurrences
in thread Regex to extract multiple occurrences

Looks like two steps is the easiest way to go indeed.

Your regex bunches up all of the occurrences except for the first one into a single capture, so I'd still have to split it and might as well make the capture include the first element as well

  • Comment on Re^2: Regex to extract multiple occurrences