需求:将下列字符串转成:我要学编程。
String str="我我...我我我..我要..要要要.要学..学..学..编程程";
*/
public class a2 {
public static void main(String[] args) {
String str="我我...我我我..我要..要要要.要学..学..学..编程程";
//1,先去掉.
str=str.replaceAll("\\.+", "");
//2,去掉重复
str=str.replaceAll("(.)\\1+", "$1");
System.out.println(str);
}
} |
|