1.

Generate a regular expression for the following problem statement:

A.
B. ^(?=.*[a-z])(?=.*[A-Z])(?=.*\d).{8,15}$
C. ^(?=.*[a-z])(?=.*[A-Z])(?=.*\d).{9,16}$
Answer» B. ^(?=.*[a-z])(?=.*[A-Z])(?=.*\d).{8,15}$


Discussion

No Comment Found