I am working on a password comparison tool.
My question revolves around comparing if specific rules were met with password.
The rules are
1 PSWD Str Length greater then 6 less then 20
-Solved with Len() function
2 PSWD must contain at least one number key and
one special key i.e. !@#$%^&*()
my question regards the second rule.

How do I compare a Str to ensure it contains at least one number and one special key?
any help would be appreciated
Thanks