I want to search a table for all ro开发者_Go百科ws that contain a non-alphanumeric and non-space character in a specific field. What I have so far:
I have a Perl regex /\\W/i which matches all non-alphanumeric characters, but it also matches spaces which I want to ignore. How do I get it to mat开发者_运维知识库ch non-alphanumeric characters excep
We have been using the following js/regex to find and replace all non-alphanumeric characters apart from - and +
I tried using this but didn\'t work- return value.repl开发者_开发知识库aceAll(\"/[^A-Za-z0-9 ]/\", \"\");