On my registration page I need to validate the usernames as alphanumeric only, but also with optional underscores. I've come up with this:

function validate_alphanumeric_underscore($str) 
{
    return preg_match('/^\w+$/',$str);
}

Which seems to work okay, but I'm not a regex expert! Does anyone spot any problem?

link|improve this question
this will allow hyphens and I think periods as well – Phill Pafford Aug 25 '09 at 20:15
I think whitespace as well might be valid with \w – Phill Pafford Aug 25 '09 at 20:21
For PRE, \w matches a "word" character (alphanumeric plus "_"), according to the official Perl documentation: perl.com/doc/manual/html/pod/perlre.html – Lucas Oman Aug 25 '09 at 20:26
feedback

4 Answers

up vote 20 down vote accepted

The actual matched characters of \w depend on the locale that is being used:

A "word" character is any letter or digit or the underscore character, that is, any character which can be part of a Perl "word". The definition of letters and digits is controlled by PCRE's character tables, and may vary if locale-specific matching is taking place. For example, in the "fr" (French) locale, some character codes greater than 128 are used for accented letters, and these are matched by \w.

So you should better explicitly specify what characters you want to allow:

/^[A-Za-z0-9_]+$/

This allows just alphanumeric characters and the underscore.

And if you want to allow underscore only as concatenation character and want to force that the username must start with a alphabet character:

/^[A-Za-z][A-Za-z0-9]*(?:_[A-Za-z0-9]+)*$/
link|improve this answer
Why? \w is exactly alphanumeric characters and underscore. – Lucas Oman Aug 25 '09 at 20:18
4  
Actually, \w is alphanumeric characters and underscore according to the active locale, so depending on the circumstances, it might match characters like 'ü' or 'ö'. – af. Aug 25 '09 at 20:24
@af, ah, you're right. Thanks for the correction! – Lucas Oman Aug 25 '09 at 20:27
Thanks everyone! Gumbo's extra options are useful so I'll go with that. Cheers! – MDM Aug 25 '09 at 20:45
feedback

try

function validate_alphanumeric_underscore($str) 
{
    return preg_match('/^[a-zA-Z0-9_]+$/',$str);
}
link|improve this answer
feedback

Looks fine to me. Note that you make no requirement for the placement of the underscore, so "username_" and "___username" would both pass.

link|improve this answer
feedback

Your own solution is perfectly fine.

preg_match uses Perl-like regular expressions, in which the character class \w defined to match exactly what you need:

\w - Match a "word" character (alphanumeric plus "_")

(source)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown