Удалить специальные карактр из струны на Java

String  result = yourString.replaceAll("[^\\w\\s]","");
Magnificent Mantis