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

I need a (php) regex to match Yahoo's username rules:

Use 4 to 32 characters and start with a letter. You may use letters, numbers, underscores, and one dot (.).

share|improve this question
1  
What type of regex is going to do this? What tool? Unless it's a PCRE engine (used in Python and Ruby), various tools have various regex syntax. – Axeman Oct 3 '08 at 21:57
1  
php, like i said. though i could refine it to php 4.something – magicrobotmonkey Oct 6 '08 at 15:29

4 Answers

up vote 16 down vote accepted
/^[A-Za-z](?=[A-Za-z0-9_.]{3,31}$)[a-zA-Z0-9_]*\.?[a-zA-Z0-9_]*$/

Or a little shorter:

/^[a-z](?=[\w.]{3,31}$)\w*\.?\w*$/i
share|improve this answer
1  
initial testing seems to confirm this one works. I;m not sure why... – magicrobotmonkey Oct 6 '08 at 15:38
ok after reading about lookarounds, i get it now, thats pretty sick man, thanks – magicrobotmonkey Oct 6 '08 at 16:51
1  
add /i at the end for case insensitive. This way you don't have to specify lower case and upper case letters. – CyberJunkie Jul 23 '11 at 23:17
The first one, is it intended to be /^[A-Za-z](?=[A-Za-z0-9_\.]{3,31}$)[a-zA-Z0-9_]*\.?[a-zA-Z0-9_]*$/ (yours didn't escape the period in the lookahead) I think the unescaped period makes the rest of the [A-Za-z0-9_] pointless. HOWEVER, interestingly I think it still works because it's in the lookahead, meaning the following [a-zA-Z0-9_] also has to be matched, effectively correcting the unescaped . But it's also possible I guess to just do this /^[A-Za-z](?=.{3,31}$)[a-zA-Z0-9_]*\.?[a-zA-Z0-9_]*$/ although I like the original with \. best. I'm still new to REGEX, is this correct? – orangewarp Jun 11 '12 at 5:23
Inside [] you don't have to escape .. It will only match a period. – Markus Jarderot Jun 11 '12 at 8:56
/[a-zA-Z][a-zA-Z0-9_]*\.?[a-zA-Z0-9_]*/

And check if strlen($username) >= 4 and <= 32.

share|improve this answer
Now if we could find a way to combine these, just that it MUST match both. – Joel Coehoorn Oct 3 '08 at 21:37
Yeah. strlen is a pretty quick operation, though. – Randy Oct 3 '08 at 21:44
but i dont have a chance to use strlen, in the spot I'm at, one regex is all I get. – magicrobotmonkey Oct 3 '08 at 21:48
What's preventing you from adding a line after the regex? – Randy Oct 3 '08 at 22:05
2  
If you want to keep it to one line in that one location, you can always turn this into a checkusername() function and do the two checks there. Trying to keep classes clean sounds like it's going to leave you with unmaintainable code if you're constantly trying to find ways to combine lines. – Randy Oct 6 '08 at 15:22
show 2 more comments

A one dot limit? That's tricky.

I'm no regex expert, but I think this would get it, except for that:

[A-Za-z][A-Za-z0-9_.]{3,31}

Maybe you could check for the . requirement separately?

share|improve this answer
This one needs ^ and $ anchors to enforce the length requirement. – ridgerunner Jul 24 '11 at 1:13
How would you change this for 1 single underscore keeping all other restraints? – Joel Mar 18 at 17:08
1  
@Joel same way I did for the one dot: enforce it separately from the expression. – Joel Coehoorn Mar 18 at 17:12

Using lookaheads you could do the following:

^(?=[A-Za-z](?:\w*(?:\.\w*)?$))(\S{4,32})$

Because you didn't specify what type of regex you needed I added a lot of Perl 5 compatible stuff. Like (?: ... ) for non-capturing parens.

Note: I added the missing close paren back in.

share|improve this answer
This one's missing a closing paren, and once i add it (tried a couple places...) I can't get it to match any strings i throw at it. – magicrobotmonkey Oct 6 '08 at 15:40

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.