Log in

View Full Version : Restrict Usernames Help


djxcee
09-26-2008, 06:32 AM
I'm trying to restrict usernames to the following characters only:

a-Z, 0-9, -, _ (dash and underscore) but can't seem to do so.

What should I add to Username Regular Expression to make what I want possible?

Dismounted
09-26-2008, 06:36 AM
^[a-z0-9-_]+$
vBulletin automagically adds "#" at the start and "#siU" at the end (this is for those wondering why I didn't put it there).

djxcee
09-26-2008, 04:15 PM
Thank you Dismounted!
Working great now :).