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 punctuati
new string(myCharCollection.Where(c => !char.IsPunctuation(c)).ToArray());