J
Joe
Hello,
I want to verify that a password is:
- Minimum 7 characters (can be any character)
- Includes at least 1 number.
I thought this would work but it does seem to:
^(?=.*[a-z])(?=.*[A-Z]).{7,}$
Thanks,
Joe
I want to verify that a password is:
- Minimum 7 characters (can be any character)
- Includes at least 1 number.
I thought this would work but it does seem to:
^(?=.*[a-z])(?=.*[A-Z]).{7,}$
Thanks,
Joe