正则的使用

作者: Ovadyah | 来源:发表于2019-05-17 09:42 被阅读0次

    //导包
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;

    if (TextUtils.isEmpty(mMerchantId)){
    mMerchantId = subUrlValue(shopUrl);
    }
    /**
    * 正则过滤获取URL里面的shop id
    * shopUrl
    * @param shopUrl
    * @return
    /
    private String subUrlValue(String shopUrl) {
    Pattern p = Pattern.compile("shop-(.
    ?)\.html");
    Matcher m = p.matcher(shopUrl);
    if (m.find()){
    return m.group(1);
    }
    return "";
    }

    相关文章

      网友评论

        本文标题:正则的使用

        本文链接:https://www.haomeiwen.com/subject/akxnaqtx.html