Created
December 30, 2022 14:27
-
-
Save BRAVO68WEB/088111293902815cdda05c6bff2e0651 to your computer and use it in GitHub Desktop.
Password Regex
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
# Password must be at least 10 characters and atmost 24 long and contain at least one uppercase letter, one lowercase letter, one number and one special character" | |
/^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[@$!%*?&])[A-Za-z\d@$!%*?&]{10,24}$/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment