Basically I just want to insure a username contains only a-z, 0-9, and underscore’s.
I think this regex will work /^([a-zA-Z0-9_-]+)$/ but I’m not sure how I can make Javascript use that to tell me whether or not a string contains characters other than those?