Skip to content

Instantly share code, notes, and snippets.

@jlittlejohn
Last active May 1, 2019 16:04
Show Gist options
  • Save jlittlejohn/5753911 to your computer and use it in GitHub Desktop.
Save jlittlejohn/5753911 to your computer and use it in GitHub Desktop.
RegEx: Password (UpperCase, LowerCase, Number/SpecialChar & min 8 Chars)
(?=^.{8,}$)((?=.*\d)|(?=.*\W+))(?![.\n])(?=.*[A-Z])(?=.*[a-z]).*$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment