- package com.six;
- /**
- * 把下列字符串利用正则表达式,变成《我要编程》
- * @author simon
- *
- */
- public class RegexText
- {
- public static void main(String[] args)
- {
- String str ="我我...我我...我要...要要...要要...学学学...学学...编编编...编编...程程程...程程";
- getReg(str);
- }
- public static void getReg(String str)
- {
- String s = str.replaceAll("\\.+","" );
- String s1 = s.replaceAll("(.)\\1+", "$1");
- System.out.println(s1);
- }
- }
复制代码 能详细解释一下这个例子程序吗?是用到后向引用吗?很难理解。
|
|