Ask your own question, for FREE!
Computer Science 16 Online
OpenStudy (anonymous):

regular expressions help needed! i need a Regular expression for validating a password that has the ff specifications: >no whitespace allowed >must tart with an alphabet >have at least one uppercase >at least one number

OpenStudy (rsmith6559):

I'm good with REs, not expert, but good. I don't think that a single RE can do that. I think that four simple REs using character classes and testing whether or not there is a match would be my approach.

OpenStudy (anonymous):

^[a-zA-Z].*[A-Z].*[0-9].*\D$ this is what i used but it checks their order of precedence, is there a way to make it check anywhere? when i have a string " Lo2k" it gives me an error and I've spotted that it's looking for yet another Capital letter from the input.

OpenStudy (rsmith6559):

I'm sorry, I can't get a working solution.

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!