I want a regular expression to check that:
A password contains at least eight characters, including at least one number and includes both lower and uppercase letter
In Java/Android, to test a password with at least one number, one letter, one special character in following pattern:
"^(?=.*[A-Za-z])(?=.*\\d)(?=.*[$@$!%*#?&])[A-Za-z\\d$@$!%*#?&]{8,}$"