“REGEX JavaScript пароль” Ответ

REGEX JavaScript пароль

var strongRegex = new RegExp("^(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])(?=.*[!@#\$%\^&\*])(?=.{8,})");

RegEx	Description
^	The password string will start this way
(?=.*[a-z])	The string must contain at least 1 lowercase alphabetical character
(?=.*[A-Z])	The string must contain at least 1 uppercase alphabetical character
(?=.*[0-9])	The string must contain at least 1 numeric character
(?=.*[!@#$%^&*])	The string must contain at least one special character, but we are escaping reserved RegEx characters to avoid conflict
(?=.{8,})	The string must be eight characters or longer

by- Nic Raboy
Wicked Whale

js revely recexation 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,}$/
@iinaamasum

Редакция пароля

^(?=.*?[A-Z])(?=.*?[a-z])(?=.*?[0-9])(?=.*?[#?!@$%^&*-]).{8,}$
Mobile Star

JS Regex Password

str.match(/^(?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?=.*[a-zA-Z]).{8,}$/)
TindyC

js revely recexation regex

const regexPass = /(?=.*[!#$%&?^*@~() "])(?=.{8,})/; 
//eight char or longer and must have a special character
@iinaamasum

Ответы похожие на “REGEX JavaScript пароль”

Вопросы похожие на “REGEX JavaScript пароль”

Больше похожих ответов на “REGEX JavaScript пароль” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования