Hi. I'm trying to use RegEx.Match to extract ISINs in a text file. An ISIN is always a two-letter country code and a ten digit ID, so the regex is really simple: 
\b[A-Z]{2}\d{10}\b
However trying to use {REGEX(Match|Test test AA1234567890 test test|\b[A-Z]{2}\d{10}\b)} only returns the function name again.
I'm guessing the function parser gets confused by the curly brackets used around the quantifiers, but I can't find any documentation on how to make VC only parse them in a regex context.
                      Edited by moderator
                       
2014-02-14T13:25:18Z
 | 
Reason: Not specified