windows live writer 作者:admin 时间:2013年09月30日 分类:新文苦旅 字数:179 阅读:1760 public String regx(String regx,String text) { Matcher matcher=Pattern.compile(regx).matcher(text); if(matcher.find()) return matcher.group(); else return null; }