I noticed that in regex if you use a capturing group and you try to use * to match multiple parts of the string will always start matching at the end of the last match for example: "00000" If I use (000)* it will only match the first "000" (range 0-2)inclusive , I want it to match range(0-2),(1,3),(2,4) inclusive. Image Example Of Match Using https://regexr.com/3anj3
Any Ideas on how to do this or if it is at all possible:
Thank you,