Posts by Skillga • 21 points
1 post
-
2
votes2
answers826
viewsA: C Password Validator
You can try using a Regex pattern for this: #include <regex.h> And for example use as default: ^(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{4,}$ Explanation: ^ inicio da palavra (?=.*) "lookahead" procura…