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

These are the requirements but i guess its too complicated for my regular expression skills...

. between 6 and 10 alphanum characters
. allowed A-Z,a-z,0-9,@,$,_
. Must begin with a letter
. Must contain at least one number
. cannot contain two consecutive identical characters
. cannot contain two consecutive identical numbers

some help would be very much appreciated

i know the basic of regular expression such as [A-Za-Z] = characters only etc... but when it comes to consecutive character and stuff... am clueless

share|improve this question
2  
What have you tried? :) – mattytommo May 29 '12 at 11:23
3  
Why such strange restrictions on a password? Why not allow all characters and arbitrary length? – CodesInChaos May 29 '12 at 11:24
4  
I'll be much easier to do this with several regular expressions than all in one, I hope that's what you're going for. – Rawling May 29 '12 at 11:24
Create regexes for each of the rules and apply them one after another – Maras Musielak May 29 '12 at 11:25
1  
Why are you making people's passwords to adhere to a certain format? Not only is this so very annoying for the user, but it reduces security since now an attacker knows every password in the system must be within those very limiting restrictions. Seriously, 10 characters maximum? You must be joking. This is bad practice and you should feel bad. – crdx May 29 '12 at 11:36
show 3 more comments

2 Answers

up vote 1 down vote accepted

I think this will helps you.....

Password Regular Expression Pattern

((?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?=.*[@#$%]).{6,20})

Description

(           # Start of group
  (?=.*\d)      #   must contains one digit from 0-9
  (?=.*[a-z])       #   must contains one lowercase characters
  (?=.*[A-Z])       #   must contains one uppercase characters
  (?=.*[@#$%])      #   must contains one special symbols in the list "@#$%"
              .     #     match anything with previous condition checking
                {6,20}  #        length at least 6 characters and maximum of 20 
)           # End of group

?= – means apply the assertion condition, meaningless by itself, always work with other combination

Whole combination is means, 6 to 20 characters string with at least one digit, one upper case letter, one lower case letter and one special symbol (“@#$%”). This regular expression pattern is very useful to implement a strong and complex password.

share|improve this answer
or you can use Exact regular expression for asp.net is this : ^(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{6,10}$ and this expression takes Password must be at least 6 characters, no more than 10 characters, and must include at least one upper case letter, one lower case letter, and one numeric digit. – Gaurav Agrawal May 29 '12 at 11:29
Can you find out which group(s) didn't match? So you can tell the user "must contains one digit from 0-9 and must contains one lowercase character" for example. – weston May 29 '12 at 11:33
didn't work since i need :contain two consecutive identical characters and it cannot contain two consecutive identical numbers and allowed characters are # and they are not a must... – rtp May 31 '12 at 12:36
        string pattern1 = @"^[a-zA-Z]([a-zA-Z])*"; //start and any number of characters
        string pattern2 = @"[0-9]+"; //one number or more numbers
        string pattern3 = @"[@#$%]*"; // special symbol allowed
        string pattern4 = @"(.)\1";//consecutive characters
        string pattern5 = @"^(.){6,10}$"; //min max
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.