If I have a string with any type of non-alphanumeric character in it:

"This., -/ is #! an $ % ^ & * example ;: {} of a = -_ string with `~)() punctuation"

How would I get a no-punctuation version of it in JavaScript:

This is an example of a string with punctuation
link|improve this question
feedback

5 Answers

If you want to remove specific punctuation from a string, it will probably be best to explicitly remove exactly what you want like

replace(/[\.,-\/#!$%\^&\*;:{}=\-_`~()]/g,"")

Doing the above still doesn't return the string as you have specified it. If you want to remove any extra spaces that were left over from removing crazy punctuation, then you are going to want to do something like

replace(/\s{2,}/g," ");

My full example:

var s = "This., -/ is #! an $ % ^ & * example ;: {} of a = -_ string with `~)() punctuation";
var punctuationless = s.replace(/[\.,-\/#!$%\^&\*;:{}=\-_`~()]/g,"");
var finalString = punctuationless.replace(/\s{2,}/g," ");

Results of running code in firebug console:

alt text

link|improve this answer
what does \s{2,100} do? – IlyaD Jul 28 '11 at 14:17
Curly braces in regex apply a quantifier to the preceding, so in this case it's replacing between 2 and 100 whitespace characters (\s) with a single space. If you want to collapse any number of whitespace characters down to one, you would leave off the upper limit like so: replace(/\s{2,}/g, ' '). – Mike Partridge Sep 27 '11 at 12:33
feedback
str = str.replace(/[^\w\s]|_/g, "")
         .replace(/\s+/g, " ");

Removes everything except alphanumeric characters and whitespace, then collapses multiple adjacent characters to single spaces.

Detailed explanation:

  1. \w is any digit, letter, or underscore.
  2. \s is any whitespace.
  3. [^\w\s] is anything that's not a digit, letter, whitespace, or underscore.
  4. [^\w\s]|_ is the same as #3 except with the underscores added back in.
link|improve this answer
This will also strip out non-English but otherwise perfectly alphanumeric characters like à, é, ö, as well as the entire Cyrillic alphabet. – Dan Abramov Mar 1 at 13:40
feedback

In a Unicode-aware language, the Unicode Punctuation character property is \p{P} — which you can usually abbreviate \pP and sometimes expand to \p{Punctuation} for readability.

Are you using a Perl Compatible Regular Expression library?

link|improve this answer
Unfortunately JS isn't Perl compatible. The other problem is when I tested this it didn't capture all of the punctuation in @Quentin's test string => mikegrace.s3.amazonaws.com/forums/stack-overflow/… – Mike Grace Dec 1 '10 at 20:45
feedback

For en-US ( American English ) strings this should suffice:

"This., -/ is #! an $ % ^ & * example ;: {} of a = -_ string with `~)() punctuation".replace( /[^a-zA-Z ]/g, '').replace( /\s\s+/g, ' ' )

Be aware that if you support UTF-8 and characters like chinese/russian and all, this will replace them as well, so you really have to specify what you want.

link|improve this answer
feedback

If you want to retain only alphabets and spaces, you can do:

str.replace(/[^a-zA-Z ]+/g, '').replace('/ {2,}/',' ')
link|improve this answer
Won't that pull out more than just punctuation? Unicode and the like? – Alex Dec 1 '10 at 20:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.