Lowercase character,
Uppercase character,
Digit,
Symbol
A short explanation:
Here is more explain of this type of password security in regex
Minimum 8 characters at least 1 Alphabet and 1 Number:
^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*(_|[^\w])).+$
A short explanation:
^
// the start of the string(?=.*[a-z])
// use positive look ahead to see if at least one lower case letter exists(?=.*[A-Z])
// use positive look ahead to see if at least one upper case letter exists(?=.*\d)
// use positive look ahead to see if at least one digit exists(?=.*[_\W])
// use positive look ahead to see if at least one underscore or non-word character exists.+
// gobble up the entire string$
// the end of the stringHere is more explain of this type of password security in regex
Minimum 8 characters at least 1 Alphabet and 1 Number:
"^(?=.*[A-Za-z])(?=.*\d)[A-Za-z\d]{8,}$"
Minimum 8 characters at least 1 Alphabet, 1 Number and 1 Special Character:"^(?=.*[A-Za-z])(?=.*\d)(?=.*[$@$!%*#?&])[A-Za-z\d$@$!%*#?&]{8,}$"
Minimum 8 characters at least 1 Uppercase Alphabet, 1 Lowercase Alphabet and 1 Number:"^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)[a-zA-Z\d]{8,}$"
Minimum 8 characters at least 1 Uppercase Alphabet, 1 Lowercase Alphabet, 1 Number and 1 Special Character:"^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[$@$!%*?&])[A-Za-z\d$@$!%*?&]{8,}"
Minimum 8 and Maximum 10 characters at least 1 Uppercase Alphabet, 1 Lowercase Alphabet, 1 Number and 1 Special Character:"^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[$@$!%*?&])[A-Za-z\d$@$!%*?&]{8,10}"
I hope this will help you
ReplyDeleteThanks for the great information in your blog PHP
Thanks for sharing this Information, Got to learn new things from your Blog on php.
ReplyDeleteRef link : http://thecreatingexperts.com/php-training-in-chennai/
This is indeed good blog on php tutorial. Content has been arranged nicely and I really like the ways things are explained.
ReplyDeletenice blog. PHP academic projects in Thrissur
ReplyDelete