标签:
/** *从一段文本中检索出唯一的结果 *@param regex 正则表达式语句 *@param text 要检索的文本 *@return */ public String regx(String regx, String text) { Matcher matcher = Pattern.compile(regx).matchter(text); if(matcher.find()) rerturn matcher.group(); else return null; }
从以上可以看出来,这个插件的显示效果还是比较理想的,后续会作为自己撰写博客的客户端使用。
标签:
原文地址:http://www.cnblogs.com/jangfei/p/4915361.html