String s = “我我…我…我.要…要要…要学…学学…学.编…编编.编.程.程.程…程”;
String s2 = s.replaceAll("\.+", “”);//替换 “…”;
String s3 = s2.replaceAll("(.)\1+", “$1”); //$1代表第一组中的内容
System.out.println(s3);
用正则替换字符串中重复字符
最新推荐文章于 2022-03-14 15:24:42 发布
String s = “我我…我…我.要…要要…要学…学学…学.编…编编.编.程.程.程…程”;
String s2 = s.replaceAll("\.+", “”);//替换 “…”;
String s3 = s2.replaceAll("(.)\1+", “$1”); //$1代表第一组中的内容
System.out.println(s3);