replaceAll()里面用的是正则表达式
四个“\”代表一个""
String str = "A\\B\\C"; System.out.println(str); System.out.println(str.replaceAll("\\\\",""));
A\B\C ABC
String str = "AB\n\tC"; System.out.println(str); System.out.println("替换后:"+str.replaceAll("\n|\t",""));
AB C 替换后:ABC