I have two RegEx tools in my workflow. The first one aims to identify if part of the string matches a criteria, for analysis purposes. The second one extracts that specific string part for reporting purposes.
Here is the funny thing, the latter works fine the first doesn't work and provides FALSE values only.
This is my RegEx for matching (this one doesn't work:
BEN \d{2,3}|BEN\d{2,3}This is my RegEx for parsing (so this one works):
(BEN \d{2,3}|BEN\d{2,3})Does anyone notice what might be going wrong? Note, it is not the brackets, I tried that one already.