Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

can any one help me in creating a regular expression for password validation.

The Condition is "Password must contain 8 characters and at least one number, one letter and one unique character such as !#$%&? "

share|improve this question

2 Answers

up vote 14 down vote accepted
^.*(?=.{8,})(?=.*[a-zA-Z])(?=.*\d)(?=.*[!#$%&? "]).*$

---

^.*              : Start
(?=.{8,})        : Length
(?=.*[a-zA-Z])   : Letters
(?=.*\d)         : Digits
(?=.*[!#$%&? "]) : Special characters
.*$              : End
share|improve this answer
+1 for explanation - tested with a few examples and works at regular-expressions.info/javascriptexample.html – amelvin Mar 3 '10 at 9:44
i tired with 'acf23!&7h' and its not validating it – Jasim Mar 3 '10 at 9:56
Don't forget to escape necessary characters... – Macmade Mar 3 '10 at 9:57
i didn't got that?? could you be more specific?? – Jasim Mar 3 '10 at 10:03
Sorry, thought you were speaking about the special chars... : ) acf23!&7h is validating using this pattern... – Macmade Mar 3 '10 at 10:15
show 1 more comment

You can achieve each of the individual requirements easily enough (e.g. minimum 8 characters: .{8,} will match 8 or more characters).

To combine them you can use "positive lookahead" to apply multiple sub-expressions to the same content. Something like (?=.*\d.*).{8,} to match one (or more) digits with lookahead, and 8 or more characters.

So:

(?=.*\d.*)(?=.*[a-zA-Z].*)(?=.*[!#\$%&\?].*).{8,}

Remembering to escape meta-characters.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.