You are viewing a single comment's thread. Return to all comments →
Is anyone doing it in regex?
two_uppercase = r"(?=(?:[a-z\d]*[A-Z][a-z\d]*){2,})" three_digits = r"(?=(?:[a-zA-Z]*\d[a-zA-Z]*){3,})" unique_characters = r"(?:([a-zA-Z\d])(?!.*\1))" regex = r"^(?=(?:[a-z\d]*[A-Z][a-z\d]*){2,})(?=(?:[a-zA-Z]*\d[a-zA-Z]*){3,})(?:([a-zA-Z\d])(?!.*\1)){10}$"
Seems like cookies are disabled on this browser, please enable them to open this website
Validating UID
You are viewing a single comment's thread. Return to all comments →
Is anyone doing it in regex?