For the hope-to-have-an-answer-in-30-seconds part of this question, I'm specifically looking for C#

But in the general case, what's the best way to strip punctuation in any language?

I should add: Ideally, the solutions won't require you to enumerate all the possible punctuation marks.

Related: Strip Punctuation in Python

link|improve this question
Different languages are, in fact, different, and I don't think there's an answer to the question you're asking. You could ask about specific languages, or what language would be best for that sort of manipulation. – David Thornley Jun 17 '10 at 17:23
feedback

11 Answers

new string(myCharCollection.Where(c => !char.IsPunctuation(c)).ToArray());
link|improve this answer
Yup. It's powering the string operation I posted below. – Tom Ritter Jan 7 '09 at 19:24
feedback

Assuming "best" means "simplest" I suggest using something like this:

String stripped = input.replaceAll("\\p{Punct}+", "");

This example is for Java, but all sufficiently modern Regex engines should support this (or something similar).

Edit: the Unicode-Aware version would be this:

String stripped = input.replaceAll("\\p{P}+", "");

The first version only looks at punctuation characters contained in ASCII.

link|improve this answer
feedback

Why not simply:

string s = "sxrdct?fvzguh,bij.";
var sb = new StringBuilder();

foreach (char c in s)
{
   if (!char.IsPunctuation(c))
      sb.Append(c);
}

s = sb.ToString();

The usage of RegEx is normally slower than simple char operations. And those LINQ operations look like overkill to me. And you can't use such code in .NET 2.0...

link|improve this answer
feedback

You can use the regex.replace method:

 replace(YourString, RegularExpressionWithPunctuationMarks, Empty String)

Since this returns a string, your method will look something like this:

 string s = Regex.Replace("Hello!?!?!?!", "[?!]", "");

You can replace "[?!]" with something more sophiticated if you want:

(\p{P})

This should find any punctuation.

link|improve this answer
+1 for using a unicode character class. Concise, precise, and nice. – Tom Anderson Dec 14 '10 at 11:52
feedback

The most braindead simple way of doing it would be using string.replace

The other way I would imagine is a regex.replace and have your regular expression with all the appropriate punctuation marks in it.

link|improve this answer
feedback

Based off GWLlosa's idea, I was able to come up with the supremely ugly, but working:

string s = "cat!";
s = s.ToCharArray().ToList<char>()
      .Where<char>(x => !char.IsPunctuation(x))
      .Aggregate<char, string>(string.Empty, new Func<string, char, string>(
             delegate(string s, char c) { return s + c; }));
link|improve this answer
2  
I know; right? I hobby of mine is committing sins against code in Linq. But please, by all means, make it better. – Tom Ritter Jan 7 '09 at 19:29
1  
Please seek psychiatric help. – Tom Anderson Dec 14 '10 at 11:49
feedback

Describes intent, easiest to read (IMHO) and best performing:

 s = s.StripPunctuation();

to implement:

public static class StringExtension
{
    public static string StripPunctuation(this string s)
    {
        var sb = new StringBuilder();
        foreach (char c in s)
        {
            if (!char.IsPunctuation(c))
                sb.Append(c);
        }
        return sb.ToString();
    }
}

This is using Hades32's algorithm which was the best performing of the bunch posted.

link|improve this answer
interesting tidbit: the following are not punctuation: $^+|<>= – Brian Jun 17 '10 at 17:07
feedback

This thread is so old, but I'd be remiss not to post a more elegant (IMO) solution.

string inputSansPunc = input.Where(c => !char.IsPunctuation(c)).Aggregate("", (current, c) => current + c);

It's LINQ sans WTF.

link|improve this answer
feedback

Here's a slightly different approach using linq. I like AviewAnew's but this avoids the Aggregate

        string myStr = "Hello there..';,]';';., Get rid of Punction";

        var s = from ch in myStr
                where !Char.IsPunctuation(ch)
                select ch;

        var bytes = UnicodeEncoding.ASCII.GetBytes(s.ToArray());
        var stringResult = UnicodeEncoding.ASCII.GetString(bytes);
link|improve this answer
Why the IEnumerable<char> to array to bytes to string conversion, why not just new String(s.ToArray())? Or is that what new string will do under the hood anyway? – Chris Marisic Aug 24 '11 at 12:38
feedback
#include<string>
    #include<cctype>
    using namespace std;

    int main(int a, char* b[]){
    string strOne = "H,e.l/l!o W#o@r^l&d!!!";
    int punct_count = 0;

cout<<"before : "<<strOne<<endl;
for(string::size_type ix = 0 ;ix < strOne.size();++ix)   
{   
	if(ispunct(strOne[ix])) 
	{
    		++punct_count;  
    		strOne.erase(ix,1); 
    		ix--;
	}//if
}
    cout<<"after : "<<strOne<<endl;
                  return 0;
    }//main
link|improve this answer
feedback
$newstr=ereg_replace("[[:punct:]]",'',$oldstr);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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