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
Pattern to match at least 1 upper case character, 1 digit and any special characters and the length between 8 to 63.
"^(?=.*[a-z])(?=.*[A-Z])(?=.*\\d)[a-zA-Z\\d\\W]{8,63}$"
This pattern was used for JAVA programming.