Generate A Regular Expression For The Following Problem #233
Generate a regular expression for the following problem statement:<br /> Password Validation: String should be 8-15 characters long. String must contain a number, an Uppercase letter and a Lower case letter.
This multiple choice question (MCQ) is related to the book/course gs gs101 Automata Theory. It can also be found in gs gs101 Regular Expressions and Languages - DFA to Regular Expressions - Quiz No.1.
Generate a regular expression for the following problem statement:
Password Validation: String should be 8-15 characters long. String must contain a number, an Uppercase letter and a Lower case letter.
Password Validation: String should be 8-15 characters long. String must contain a number, an Uppercase letter and a Lower case letter.
^(?=.*[a-z])(?=.*[A-Z])(?=.*\d).{8,15}$
^(?=.*[a-z])(?=.*[A-Z])(?=.*\d).{9,16}$
^(?=.[a-z])(?=.[A-Z])(?=.\d).{8,15}$
None of the mentioned
Similar question(s) are as followings:
Online Quizzes of gs101 Automata Theory
Other Classes Of Problems - Randomized Algorithm - Quiz No.1
gs gs101 Automata Theory
Online Quizzes
Push Down Automata - DPDA and Ambiguous Grammars - Quiz No.1
gs gs101 Automata Theory
Online Quizzes