Skip to content

Instantly share code, notes, and snippets.

@kleppy
Created May 6, 2024 23:32
Show Gist options
  • Select an option

  • Save kleppy/4eef87abc56fa6b6c07afa296a77b2c9 to your computer and use it in GitHub Desktop.

Select an option

Save kleppy/4eef87abc56fa6b6c07afa296a77b2c9 to your computer and use it in GitHub Desktop.
REGEX.MD
## Regular Expressions
# Operators
[^](#start-of-string)\
[.](#any-char)\
[$](#\$)\
[?](#0-or-1)\
[\[\]](#range)\
[*](#wild)\
[-](#between)\
[+](#1-or-more)\
[\](#escape)\
[()](#capture)\
[|](#or)\
[{}](#number-range)
##^
Start of string.
##.
Any character.
##$
End of line.
##?
0 or 1 instance.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment