日期:2014-05-20 浏览次数:20666 次
String str=你的str串 List<String> list=new LinkedList<String>(); Pattern p=Pattern.compile(你的正则表达式X); Matcher m=p.matcher(str); while(m.find()){ list.add(m.group()); } 这个list就是你要的