windows live writer

public String regx(String regx,String text)
 {
 Matcher matcher=Pattern.compile(regx).matcher(text);
 if(matcher.find())
 return matcher.group();
 else
 return null;
 }
最后修改于:2015年12月22日 13:57