I need to know how the regex is for the following case:
- At least 8 characters
( ... ).{8,}
- Has letters
(?=.*[a-z|A-Z])
- Has numbers
(?=.*\d)
- Has special characters
(?=.*[~'!@#$%?\\\/&*\]|\[=()}"{+_:;,.><'-])
I got the following based in other regex:
((?=.*\d)(?=.*[a-z|A-Z])(?=.*[~'!@#$%?\\\/&*\]|\[=()}"{+_:;,.><'-])).{8,}
But it fails for:
qwer!234
Any tips?