ZVON > References > Regular Expressions Reference

(?<!pattern)

A zero-width negative lookbehind assertion. For example /(?<!bar)foo/ matches any occurrence of "foo" that isn't following "bar". Works only for fixed-width lookbehind.


Examples: