标签: java string
我想摆脱字符串中的所有符号或标点符号 例如 String str =“\”hello!。?,\“”; str的输出应该是:hello
答案 0 :(得分:0)
您可以使用字符串的replaceAll。
String str = "\"hello!.?,\""; String newStr = str.replaceAll("[^\\w]", ""); System.out.println(newStr);
有关如何构建正则表达式的更多详细信息,请参阅Pattern的文档。