日期:2014-05-20 浏览次数:20798 次
Matcher m = Pattern.compile("([0-9]+[.][0-9]+);([012][0-9]):([0-6][0-9]):\\d*").matcher("6.000;22:52:00"); while (m.find()) { System.out.println(m.group()); }