码迷,mamicode.com
首页 > 其他好文 > 详细

张君测试

时间:2017-09-13 21:12:41      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:param   tabs   first   pil   als   div   tab   too   bar   


/**
 * 从一段文本中检索出唯一的结果
 * @param regx 正则表达式语句
 * @param text 要检索的文本
 * @return
 */
public String regx(String regx,String text)
{
    Matcher matcher=Pattern.compile(regx).matcher(text);
    if(matcher.find())
        return matcher.group();
    else
        return null;
}
/**
 * 从一段文本中检索出唯一的结果
 * @param regx 正则表达式语句
 * @param text 要检索的文本
 * @return
 */
public String regx(String regx,String text)
{
    Matcher matcher=Pattern.compile(regx).matcher(text);
    if(matcher.find())
        return matcher.group();
    else
        return null;
}
/**
 * 从一段文本中检索出唯一的结果
 * @param regx 正则表达式语句
 * @param text 要检索的文本
 * @return
 */
public String regx(String regx,String text)
{
    Matcher matcher=Pattern.compile(regx).matcher(text);
    if(matcher.find())
        return matcher.group();
    else
        return null;
}

  

张君测试

标签:param   tabs   first   pil   als   div   tab   too   bar   

原文地址:http://www.cnblogs.com/chongyou/p/7517615.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!