日期:2014-05-20 浏览次数:20685 次
String str="111.111.111.111 ab-bb-bb-bb-bb-bb fefe";
String regex=".*?(\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}).*?(\\w{2}-\\w{2}-\\w{2}-\\w{2}-\\w{2}-\\w{2})";
// String regex="(\\d){1}";
Matcher m = Pattern.compile(regex).matcher(str);
while(m.find()){
System.out.print(m.group(1)+",");
System.out.println(m.group(2));
}