java中字符串替换方法主要有三种,分别是replace()、replaceAll()和replaceFirst(),这三种方法可以在三种不同情况应用,下面就由我来具体说明这三种方法的应用情况吧。
replace()
replace的参数是char和CharSequence,即可以支持字符的替换,也支持字符串的替换(CharSequence即字符串序列的意思,说白了也就是字符串)
String test01 = "aaaaa";
test01 = test01.replace("a", "b");
System.out.println(test01);
结果:
replaceAll()
replaceAll的参数是regex,即基于规则表达式的替换,比如,可以通过replaceAll(“\d”, “*”)把一个字符串所有的数字字符都换成星号;
上面两个在用法挺相似的,他们只有在是否能用规则表达式之间的区别,别的没有什么不同
String test01 = "aaaaa";
test01 = test01.replaceAll("\\D", "b");
System.out.println(test01);
结果:
replaceFirst()
replaceFirst()就是只替换第一个的意思。
String test01 = "aaaaa";
test01 = test01.replaceFirst("a", "b");
System.out.println(test01);
结果: