I have a regex which finds errors in a log for me:
/(exception|error)/i
This works, except that I do not want to be alerted when the following occurs, which I expect to happen:
DD/MM/YYYY 10:20pm: Read exception encountered
How do I specifically reject the 'Read exception encountered' string? I'm trying to use the ?! operator, but failing:
/(?!Read exception encountered)(exception|error)/i
The above still matches the string I want to exclude.
UPDATE: After experimenting with the negative lookbehind and lookahead solutions below, I have discovered that SiteScope supports only basic POSIX regex features, not extended features. Is a solution possible using only basic POSIX regex features?
You want to use "Negative Lookbehind" (if it's supported by your regex engine.) effectively you say "I want to match X patern, as long as this other pattern does NOT preceed it."
In your example, it looks like this:
see more about "lookaround" features here.