Skip to content

Instantly share code, notes, and snippets.

@keidarcy
Last active June 14, 2020 01:31
Show Gist options
  • Save keidarcy/b856ea3f048d5345397fd1170f23a416 to your computer and use it in GitHub Desktop.
Save keidarcy/b856ea3f048d5345397fd1170f23a416 to your computer and use it in GitHub Desktop.
regex

. - Any one character

* - Match any number of previous (including 0)

+ - Match any number of previous

$ - End of the line

^ - Begining of the line

\S - Any non-whitespace charactor

\s - Any whitespace charactor

? - Optional

[a-z] - Any lowercase letter

[A-Z] - Any upppercase letter

[a-zA-Z] - Any letter

[0-9] - Any number # [5-9]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment