Skip to content

Instantly share code, notes, and snippets.

@ArielMejiaDev
Forked from HarishChaudhari/passwordRegex.js
Created May 18, 2018 15:49
Show Gist options
  • Save ArielMejiaDev/188ccbd887c76abb33cecbd14a0763bd to your computer and use it in GitHub Desktop.
Save ArielMejiaDev/188ccbd887c76abb33cecbd14a0763bd to your computer and use it in GitHub Desktop.
Password validation RegEx for JavaScript
/**
* Password validation RegEx for JavaScript
*
* Passwords must be
* - At least 8 characters long, max length anything
* - Include at least 1 lowercase letter
* - 1 capital letter
* - 1 number
* - 1 special character => !@#$%^&*
*
* @author Harish Chaudhari <harishchaudhari.com>
*
*/
var str = "password"; // your password field's value goes here
/^(?=.*[\d])(?=.*[A-Z])(?=.*[a-z])(?=.*[!@#$%^&*])[\w!@#$%^&*]{8,}$/.test(str);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment