6sabcsssfsfs33 去掉ab3,更好的办法

String regx="[^a|b|3]";  
      String temp="6sabcsssfsfs33";  
      Pattern p=Pattern.compile(regx);  
      Matcher m=p.matcher(temp);  
      while(m.find())  
           System.out.print(m.group());

你可能感兴趣的:(css)