Answers for "passoword regex validation in javascriopt"

4

js password validation regex

/^            : Start
    (?=.{8,})        : Length
    (?=.*[a-zA-Z])   : Letters
    (?=.*\d)         : Digits
    /^(?=.*[!#$%&?*^()~` "])$/ : Special characters
    $/              : End



        (/^
        (?=.*\d)                //should contain at least one digit
        (?=.*[a-z])             //should contain at least one lower case
        (?=.*[A-Z])             //should contain at least one upper case
        [a-zA-Z0-9]{8,}         //should contain at least 8 from the mentioned characters

        $/)

Example:-   /^(?=.*\d)(?=.*[a-zA-Z])[a-zA-Z0-9]{7,}$/
Posted by: Guest on April-23-2022
1

js password validation regex

const regexPass = /(?=.*[!#$%&?^*@~() "])(?=.{8,})/; 
//eight char or longer and must have a special character
Posted by: Guest on April-23-2022

Browse Popular Code Answers by Language