日期:2014-05-20 浏览次数:20660 次
String str = "G11G12J1J2";//false Matcher m=Pattern.compile("[a-zA-Z]+\\d+").matcher(str); while(m.find()){ System.out.println(m.group()); }