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
I think the correct regex is this /^@(\w){1,15}/g without the ? on @(at)
/^@(\w){1,15}/g