两个地方提醒你!!- class RegexTest{
- public static void main(String[] args){
- String str="我我。。。。。。。。我要。。我要。。我要。。。要学。。。要学编。。。编。。。编。。。编程";
- str=str.replaceAll("\\。+","");
- System.out.println(str);
- System.out.println("--------我是华丽丽的分割线-------");
-
- str=str.replaceAll("(..)\\1+","$1");//1.你的这个地方的组里,即()里面加一点
- str=str.replaceAll("(.)\\1+","$1");//2.再加上这一行代码,就ok啦
- System.out.println(str);
- System.out.println("--------我是华丽丽的分割线-------");
- }
- }
复制代码 |