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;
 }
原文地址:https://www.cnblogs.com/jcomey/p/4141662.html