Regex to accept alphanumeric and some special character in Javascript? [closed]
Matthew Harrington
I have a Javascript regex like this:
/^[\x00-\x7F]*$/I want to modify this regex so that it accept all capital and non-capital alphabets, all the numbers and some special characters: - , _, @, ., /, #, &, +.
How can I do this?
22 Answers
use:
/^[ A-Za-z0-9_@./#&+-]*$/You can also use the character class \w to replace A-Za-z0-9_
I forgot to mention. This should also accept whitespace.
You could use:
/^[-@.\/#&+\w\s]*$/Note how this makes use of the character classes \w and \s.
EDIT:- Added \ to escape /
3