A solução do @ codaddict funcionará.
Você também deve alterar algumas de suas regras para:
- Adicione mais caracteres especiais, como%, ^, (,), -, _, + e ponto final. Estou adicionando todos os caracteres especiais que você perdeu acima dos sinais numéricos nos teclados dos EUA. Fuja dos que o regex usa.
- Crie a senha com 8 ou mais caracteres. Não é apenas um número estático 8.
Com as melhorias acima, e para mais flexibilidade e legibilidade, eu modificaria o regex para.
^(?=.*[a-z]){3,}(?=.*[A-Z]){2,}(?=.*[0-9]){2,}(?=.*[!@#$%^&*()--__+.]){1,}.{8,}$
Explicação básica
(?=.*RULE){MIN_OCCURANCES,} Each rule block is shown by (){}. The rule and number of occurrences can then be easily specified and tested separately, before getting combined
Explicação detalhada
^ start anchor
(?=.*[a-z]){3,} lowercase letters. {3,} indicates that you want 3 of this group
(?=.*[A-Z]){2,} uppercase letters. {2,} indicates that you want 2 of this group
(?=.*[0-9]){2,} numbers. {2,} indicates that you want 2 of this group
(?=.*[!@#$%^&*()--__+.]){1,} all the special characters in the [] fields. The ones used by regex are escaped by using the \ or the character itself. {1,} is redundant, but good practice, in case you change that to more than 1 in the future. Also keeps all the groups consistent
{8,} indicates that you want 8 or more
$ end anchor
E, finalmente, para fins de teste, aqui está um robulink com a regex acima