I have a list of passwords that I need to examine and determine if they meet the default 3 of 4 rule for AD.
Rule is contain 3 of the 4 following requirements: lower case character (a-z) upper case character (A-Z) numeric (0-9) special character ( !@#$%^&()+= )
I am still learning Regex. I know how to select only those that meet any one character case, but I am not sure how to do 3 of 4.