Hey everyone
I'm stuck with this regular expression, for matching a iso standard version
what I want to do is match the text in green: ISO 11784:1996/Amd.2:2010(E)
there is also others that look like this: ISO 11789:1999(E), and without the (E) part,
Só I did this one
(?i)ISO.+?[\d-]+:(?:\d+/Amd.+?:)?[\d-]+(?:\(\w\))*
to match both cases but doesn't ignore the text in red
Can somebody point out what I'm doing wrong here?