Skip to content

Instantly share code, notes, and snippets.

@paulsturgess
Last active December 14, 2015 20:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paulsturgess/5142103 to your computer and use it in GitHub Desktop.
Save paulsturgess/5142103 to your computer and use it in GitHub Desktop.
Password Regex Must include one number, one upper and lower case letter and be between 8 and 40 characters.
/^(?=.*\d)(?=.*?[a-z])(?=.*?[A-Z]).{8,40}$/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment