Skip to content

Instantly share code, notes, and snippets.

@HarishChaudhari
Created August 1, 2016 13:29
Show Gist options
  • Save HarishChaudhari/0dd5514ce430991a1b1b8fa04e8b72a4 to your computer and use it in GitHub Desktop.
Save HarishChaudhari/0dd5514ce430991a1b1b8fa04e8b72a4 to your computer and use it in GitHub Desktop.

Revisions

  1. HarishChaudhari created this gist Aug 1, 2016.
    15 changes: 15 additions & 0 deletions passwordRegex.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,15 @@
    /**
    * 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);