dlvcsulb / CSULB-Design-491-Let-s-Talk

Google Assistant anti-depressant action (conversational system) for use with Google Home, Android, iOS, and Chrome platforms where Assistant is available. Senior design project for CECS 491 at California State University, Long Beach.
1 stars 2 forks source link

User pw verification #12

Closed MarkSaa closed 6 years ago

MarkSaa commented 6 years ago

Must: 8 Characters long 1 Capitalized letter 1 Lowercase letter 1 Number 1 Special character

MarkSaa commented 6 years ago

Done in regex: .py|.js: "(?=.[a-z])(?=.[A-Z])(?=.\d)(?=.[!@#$%^&?])[A-Za-z\d!@#$%^&?]{8,}" .java|.cpp: "(?=.[a-z])(?=.[A-Z])(?=.\d)(?=.[!@#$%^&?])[A-Za-z\d!@#$%^&?]{8,}"