Skip to main content

Lookahead and Lookbehind Assertions

Negative Lookahead (?!...)

0:00
LearnStep 1/3

Negative Lookahead

Excluding Patterns with Negative Lookahead

Negative Lookahead matches a pattern only if it is not followed by another specific pattern. The syntax is (?!pattern).

python