Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll
Well done!
You have completed Regular Expressions in JavaScript!
You have completed Regular Expressions in JavaScript!
Preview
Learn how to validate a password that requires at least one lowercase letter, one uppercase letter and one number.
Password Regular Expression
Here's the regular expression we end up with in the video. It uses a "lookahead".
/^(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).*$/
Resources
- Lookaheads in regular expressions.
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign upRelated Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
replacing any typed character
with a bullet symbol.
0:00
This hides the password from
anyone spying over your shoulder.
0:02
To see what we're doing though, I'm going
to change this to a simple text input so
0:07
we can see what we type into the field.
0:12
Now we'll be able to test it and
make sure our validation works.
0:23
And when we have it working, we can
just change it back to a password type.
0:26
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up