La soluzione di @ codaddict funzionerà.
Dovresti anche considerare di modificare alcune delle tue regole in:
- Aggiungi altri caratteri speciali, ad esempio%, ^, (,), -, _, + e punto. Sto aggiungendo tutti i caratteri speciali che hai perso sopra i segni numerici delle tastiere statunitensi. Sfuggire a quelli utilizzati da regex.
- Crea la password 8 o più caratteri. Non solo un numero statico 8.
Con i miglioramenti di cui sopra e per maggiore flessibilità e leggibilità, modificherei la regex in.
^(?=.*[a-z]){3,}(?=.*[A-Z]){2,}(?=.*[0-9]){2,}(?=.*[!@#$%^&*()--__+.]){1,}.{8,}$
Spiegazione di base
(?=.*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
Spiegazione dettagliata
^ 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 infine, a scopo di test, ecco un robulink con la regex sopra