password checking regex

Solutions on MaxInterview for password checking regex by the best coders in the world

showing results for - "password checking regex"
Alessia
18 Oct 2019
1"^(?=.*[A-Za-z])(?=.*\d)(?=.*[@$!%*#?&])[A-Za-z\d@$!%*#?&]{8,}$"
2
Morris
29 Sep 2020
1// minimum 8 characters , minimum one specil charecter , minimum one uppercase and one lowercase letter required
2/^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[@$!%*?&])[A-Za-z\d@$!%*?&]{8,}$/