I've got a long list of commonly compromised passwords I need to trim down, leaving only the more complex combinations that meet the company's policy. I want to delete any rows that do not meet at least three of these four required contents: lowercase letters, uppercase letters, numbers, symbols. If this is a little too complicated, I'd settle for just removing any lines that are nothing but lowercase letters (no capital letters, no numbers, no symbols).
So a list like this:
password1
password
Password
P@ssword
Password1
Would become:
Password1
P@ssword
Thanks
So a list like this:
password1
password
Password
P@ssword
Password1
Would become:
Password1
P@ssword
Thanks