Log in

View Full Version : Username Letter


Mum
06-25-2008, 01:45 AM
How can i make it that the first character of a username MUST be a letter?

Dismounted
06-25-2008, 07:20 AM
/^([a-z]{1})(.*)$/i

Mum
06-25-2008, 08:12 PM
Thank you, i put that in username regular expressions, and it will also let it be upper or lower case?

Thanks so much

--------------- Added 1214428689 at 1214428689 ---------------

Just tested this, tried *test, it didn't let it through, great, tried 1test, it didn't let it through great, tried test, and it wouldn't let it through LOL

Thanks in advance for looking into it.

Dismounted
06-26-2008, 07:09 AM
/^([a-z]{1})/i