/**
* b:我爱学编程
需求:我我....我...我.要...要要...要学....学学..学.编..编编.编.程.程.程..程
将字符串还原成:“我要学编程”。
*
*/
public class Test5 {
public static void main(String[] args) {
String str="我我....我...我.要...要要...要学....学学..学.编..编编.编.程.程.程..程";
String str2 = str.replaceAll("\\.","");
String str3 = str2.replaceAll("(.)\\1+", "$1");
System.out.println(str3);
}
} |
|