Could you please help me to understand if RE2 allows to negate regular expressions (the same effect as "grep -v", i.e. "select everything that does not match a given expression")?
For example, I could match (positive match):
"[[:upper:]][[:upper:]][[:upper:]][[:digit:]]"
How do I select using RE2 everything that does not match the above expression (negative match)?
Thank you for your help!