Skip to content

Instantly share code, notes, and snippets.

@NetoBuenrostro
Last active April 28, 2018 01:45
Show Gist options
  • Save NetoBuenrostro/d0fe7b941b9dbc257985 to your computer and use it in GitHub Desktop.
Save NetoBuenrostro/d0fe7b941b9dbc257985 to your computer and use it in GitHub Desktop.
Regex --moved

RegEx Snippets

Look around

Look ahead

Positive look-ahead assertion

(?=pattern)

Negative look-ahead assertion

(?!pattern)

Look behind

Positive look-behind assertion

(?<=pattern)

Negative look-behind assertion

(?<!pattern)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment