/*
* 【练习1】治疗口吃
* 我我我...我我我要要...要要要...要学学学学...学学编编...编编编...编程程...程程...程程
*/
package test1;
public class Test1 {
public static void main(String[] args) {
String str = "我我我...我我我要要...要要要...要学学学学...学学编编...编编编...编程程...程程...程程";
//1.将str中的.去掉,用替换
String regex1 = "\\.+";
str = str.replaceAll(regex1, "");
//2.替换叠词
String regex2 = "(.)\\1+";
str = str.replaceAll(regex2, "$1");
System.out.println(str);//我要学编程
}
}
//regex1和regex2解释详见之前视频
28-正则表达式-07-正则表达式(练习_1)
最新推荐文章于 2021-04-04 01:27:31 发布