Perl regular expressionsEdit
Negative (fixed-width) lookbehind
/(?<!foo)bar/
/(?<!foo)bar/
Matches "bar" only if not preceded by "foo".
Match only horizontal whitespace
\h
\h
/(?<!foo)bar/
Matches "bar" only if not preceded by "foo".
\h