Answers for "password verification using regex"

-1

Password checking regex

// minimum 8 characters , minimum one specil charecter , minimum one uppercase and one lowercase letter required
/^(?=.*[a-z])(?=.*[A-Z])(?=.*d)(?=.*[@$!%*?&])[A-Za-zd@$!%*?&]{8,}$/
Posted by: Guest on August-05-2021
0

password validation in regex

(?=^.{8,}$)((?=.*d)|(?=.*W+))(?![.n])(?=.*[A-Z])(?=.*[a-z]).*$"
Posted by: Guest on October-19-2021

Code answers related to "password verification using regex"

Browse Popular Code Answers by Language