My password strength criteria is as below :
- Character length: 8 -> 24
- Contains least 3 of following types:
- Uppercase letter [A-Z]
- Lowercase letter [a-z]
- Numeric [0-9]
- Special character ~`!@#$%^&*()-_=+[{]}\|;:'"<,>.?/
Can anyone help me to make regular expression and explain. Thanks.