Regex for Username?
That regex says "At least one letter or number" you want "Every character from the start to the end is a letter or number"
"^[a-zA-Z0-9]+$"
That regex says "At least one letter or number" you want "Every character from the start to the end is a letter or number"
"^[a-zA-Z0-9]+$"