Skip to content

Instantly share code, notes, and snippets.

@doevelopper
Created August 22, 2017 12:49
Show Gist options
  • Save doevelopper/63796337309039987b3f5130824503f0 to your computer and use it in GitHub Desktop.
Save doevelopper/63796337309039987b3f5130824503f0 to your computer and use it in GitHub Desktop.
http://regexlib.com/Search.aspx?k=password
Expression
^(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{4,8}$
Description
Password matching expression. Password must be at least 4 characters, no more than 8 characters,
and must include at least one upper case letter, one lower case letter, and one numeric digit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment