ZVON > References > Regular Expressions Reference

(?!pattern)

A zero-width negative lookahead assertion. For example /foo(?!bar)/ matches any occurrence of "foo" that isn't followed by "bar".


Examples: 01 02