show/hide this revision's text 3 Clarification

AFAIK, there is no pure regex way to do that at once (ie. returning the three captures you request without loop).

Now, you can find a pattern once, and loop on the search starting with offset (found position + 1). Should combine regex use with simple code.

[EDIT] Great, I am downvoted when I basically said what Jan shown...
[EDIT 2] To be clear: Jan's answer is better. Not more precise, but certainly more detailed, it deserves to be chosen. I just don't understand why mine is downvoted, since I still see nothing incorrect in it. Not a big deal, just annoying.

show/hide this revision's text 2 Clarify my initial statement + remark

AFAIK, there is no pure regex way to do that at once (ie. with captures)returning the three captures you request without loop).

Now, you can find a pattern once, and loop on the search starting with offset (found position + 1). Should combine regex use with simple code.

[EDIT] Great, I am downvoted when I basically said what Jan shown...

show/hide this revision's text 1

AFAIK, there is no pure regex way to do that (ie. with captures).

Now, you can find a pattern once, and loop on the search starting with offset (found position + 1). Should combine regex use with simple code.