I need a javascript regular expression to match twitter usernames.
The username is entered by the user while signing up, so I don\'t want to distract them with too m
This should do: ^@?(\w){1,15}$
^@?(\w){1,15}$