Answers for "regex to find passwords from string"

8

password regex

^(?=.*?[A-Z])(?=.*?[a-z])(?=.*?[0-9])(?=.*?[#?!@$%^&*-]).{8,}$
Posted by: Guest on November-28-2019
0

regex pattern for strong password

(?=^.{8,}$)(?=.*\d)(?=.*[!@#$%^&*]+)(?![.\n])(?=.*[A-Z])(?=.*[a-z]).*$
Posted by: Guest on October-13-2020

Code answers related to "regex to find passwords from string"

Browse Popular Code Answers by Language