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
(?=.*[a-z])(?=.*[A-Z])(?=.*\d)[a-zA-Z\d]{8,}$
Link check online https://regex101.com/r/mqGurh/1