Java string 怎么把 "***" 替换成其他字符,不要跟我说"\\*\\*\\*" ,
发布网友
发布时间:2024-10-03 01:03
我来回答
共2个回答
热心网友
时间:2024-11-18 02:22
public static void main(String[] args) {
String te = "***";
//te = te.replaceAll("\\*", "a");//将每个*转换成a
te = te.replaceAll("\\*\\*\\*", "abc");//将三个*一起转换成abc
System.out.println(te);
}
热心网友
时间:2024-11-18 02:22
byte[] b ={42, 42, 42};
System.out.println(new String(b));
还有很多方法,比如&方式的,我这个是ascII方式。
用这个再去匹配
String string="a***c";
byte[] b ={42, 42, 42};
String ts= string.replace(new String(b),"b");
System.out.println(ts);