ZVON
>
References
>
Regular Expressions Reference
Intro
/
Search
/
ZVON
(?!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