Java entfernen Interpunktion aus der Zeichenfolge
inputString.replaceAll("\\p{Punct}", "");
Smoggy Swiftlet
inputString.replaceAll("\\p{Punct}", "");