编程语言
首页 > 编程语言> > JAVA中字符串使用replaceAll()去除‘\’、‘\n’、‘\r’、‘\t’踩坑

JAVA中字符串使用replaceAll()去除‘\’、‘\n’、‘\r’、‘\t’踩坑

作者:互联网

replaceAll()里面用的是正则表达式

四个“\”代表一个""

代码1:

String str = "A\\B\\C";
System.out.println(str);
System.out.println(str.replaceAll("\\\\",""));

输出1:

A\B\C
ABC

代码2:

String str = "AB\n\tC";
System.out.println(str);
System.out.println("替换后:"+str.replaceAll("\n|\t",""));

输出2:

AB
	C
替换后:ABC

标签:JAVA,String,System,replaceAll,str,去除,println,out
来源: https://blog.csdn.net/Yisermorn/article/details/123118319