July 2017
Intermediate to advanced
158 pages
3h 41m
English
A negative lookbehind assertion asserts true if the pattern inside the lookbehind is not matched.
Here is its syntax:
(?<!...)
For example, (?<!xyz)abc asserts that there cannot be the string, xyz, just before matching the string, abc.
Here are a few important points about lookaround regex patterns:
Read now
Unlock full access