title | description | author | tags |
---|---|---|---|
Remove Punctuation |
Removes punctuation (, . !) from a string |
Mcbencrafter |
string,punctuation,clean,normalization |
public static String removePunctuation(String text) {
return text.replaceAll("[,!.?;:]", "");
}
// Usage:
System.out.println(removePunctuation("hello, world!")); // "hello world"