Regular Expression for character combinations or strings that should NOT match
Is it possible to specify a regular expression pattern for strings that should NOT match something.
For example, I get a string that specifies a number of codes like: VV, VVP, PVT, XXP, G, BB.
I would like to select all codes from the string that differ from VV or XX (so XXP is a valid code!).
Is there an easy way to do this using regular expressions?!
Best regards,
Philippe

