Skip to content

Instantly share code, notes, and snippets.

@a2
Last active April 15, 2017 20:54
Show Gist options
  • Save a2/1196145 to your computer and use it in GitHub Desktop.
Save a2/1196145 to your computer and use it in GitHub Desktop.
Look ( Ahead | Behind )
Name Pattern Description Example
Positive Lookahead q(?=u) q followed by u q in absquatulate
Negative Lookahead q(?!u) q not followed by u q in qwerty
Positive Lookbehind (?<=q)u u preceded by q u in question
Negative Lookbehind (?<!q)u u not preceded by q u in excuses
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment