Learn lookahead regular expression by testing a strong password pattern
Strong password regex pattern
^(?=.*[A-Z]+)(?=.*[a-z]+)(?=.*\d+)(?=.*[\^\$!%@#]+)[\w\^\$!%@#]{8,12}$
What we we expected a password to match this pattern.
Password contains 8-12 characters.
Must …
Read more...