Java全部替换?

Java Replace All?

我正在尝试替换我的字符串中的一些字符,但它不起作用。你能帮我么?

我的代码是:

String test = "ABC?!";
test = test.replaceAll("\?","");
test= test.replaceAll("\!, "");

非常感谢你帮助我。

尝试str.replaceAll("[?!]", "");