Hi,
I'm trying to write a regex which should be able to identify boolean expressions.
I need to avoid cases like IF(AND AND AND)
. The name of the variable shouldn't be one of the following operators (OR;AND;XOR)
.
I tried to use [^(OR)]
but this wasn't helpful. My Regex looks like this:
(?:<Name> [A-Za-z0-9])
Is there any chance to write a Regex which could find a string like OR and then don't match it?
Thanks for your help.
Orri