Irakli Lekishvili
Irakli Lekishvili

Reputation: 34198

C# asp.net mvc Username regex

Im looking for regex for usernames

I want to allow:

Upvotes: 0

Views: 1064

Answers (1)

buckley
buckley

Reputation: 14129

Here you go

^[-0-9A-Za-z_]{5,15}$

Note that the - is put first in the character class otherwise it will get the meaning of indicating a range as in 0-9 = 0 to 9

Upvotes: 5

Related Questions