Java удалить пунктуацию из строки
inputString.replaceAll("\\p{Punct}", "");
Smoggy Swiftlet
inputString.replaceAll("\\p{Punct}", "");