Created
October 30, 2019 10:37
-
-
Save farhang/3fc260c3915c1806998ed017858a5dd0 to your computer and use it in GitHub Desktop.
JavaScript regular expression password (at least one lower case letter and one upper case letter and one number or regular expression
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /((?=.*\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