I am looking for a regex to validate a string. I want to allow numbers, alpha characters, spaces and any of the following characters in any order:
+ - ( ) ,
Like this:
/^[a-zA-Z0-9 +(),-]+$/
EDIT: Now accepts spaces.