The regular expression you are looking for
^[a-z A-Z0-9\/\\.'"]+$
Remember that if you use PHP, you need to use \ to avoid backslashes and quotes that you use to encapsulate strings.
In PHP using preg_match it should look like this:
preg_match("/^[a-z A-Z0-9\\/\\\\.'\"]+$/",$value);
, , , .
http://regexpal.com/