Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
5answers
5k views

Replacing all non-alphanumeric characters with empty strings

I tried using this but didn't work- return value.replaceAll("/[^A-Za-z0-9 ]/", "");
2
votes
2answers
2k views

SQL Server 2008 query to find rows containing non-alphanumeric chararacters in a column

I was actually asked this myself a few weeks ago, whereas I know exactly how to do this with a SP or UDF but I was wondering if there was a quick and easy way of doing this without these methods, I'm ...
1
vote
7answers
258 views

filter non-alphanumeric “repeating” characters

What's the best way to filter non-alphanumeric "repeating" characters I would rather no build a list of characters to check for. Is there good regex for this I can use in PHP. Examples: ...
1
vote
1answer
923 views

RegEx (in JavaScript find/replace) - match non-alphanumeric characters but ignore - and +

We have been using the following js/regex to find and replace all non-alphanumeric characters apart from - and + outputString = outputString.replace(/[^\w|^\+|^-]*/g, ""); However it doesn't work ...
0
votes
1answer
45 views

How can I search for rows that contain a non-alphanumeric or space character?

I want to search a table for all rows that contain a non-alphanumeric and non-space character in a specific field. What I have so far: SELECT * FROM myTable WHERE myField LIKE '%[^a-zA-Z0-9]%' As ...