Skip to main content

Lookahead and Lookbehind Assertions

Negative Lookbehind (?<!...)

0:00
LearnStep 1/3

Negative Lookbehind

Excluding with Negative Lookbehind

Negative lookbehind (?<!...) asserts that the text immediately preceding the current position does not match the pattern.

python