[javascript] Regex to accept alphanumeric and some special character in Javascript?

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?

This question is related to javascript regex

The answer is


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 /