Sorry if the title isn't descriptive enough. I want to be able to extract into a group if a specificly formatted sequence occurs one or more times.
Here is my current REGEX-> (removed duplicate slashes for clarity)
(.?):([A-Z\d]{3}-[A-Z\d]{5}-[A-Z\d]{2})(:[A-Z\d]{3}-[A-Z\d]{5}-[A-Z\d]{2}).
I know I'm close but not quite there.
So these are valid
TEST1:001-12345-67:ABC-DEFGH-IJ
returned as TEST1 , 001-12345-67 , :ABC-DEFGH-IJ (commas separate groups)
WHATEVER:123-12345-12:987-98765-98:ASD-ASDFA-AS (current regex doesn't work for this)
returned as WHATEVER , 123-12345-12 , :987-98765-98:ASD-ASDFA-AS
And these aren't
TEST1:001-12345-67
WHATEVER:123-12345-12:HMMMM
It's like I need to do a bracket with a '.' for the whole second sequence. Thanks for everyone's contemplation. PS Regex make my head hurt.