UbbCode用正则替换指定格式的输入实现想要的输出

前端之家收集整理的这篇文章主要介绍了UbbCode用正则替换指定格式的输入实现想要的输出前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

代码如下

public static String replaceLink(String strContent){
        
        Pattern pattern=null;
        Matcher matcher= null;
        if(strContent.indexOf("url")!=-1){
        String reGex="\\[url\\](http|https)(\\:\\/{2}\\w+\\.tt.cn.*?)\\[\\/url\\]";
        strContent = ubbReplace(strContent,reGex,"<a style=\"color:#5193C7;\"  href=\"$1$2\" target=\"_blank\" >$1$2 </a>",pattern,matcher,true);
        reGex="\\[url\\](http|https):(\\/{2}\\w+\\.\\w+\\.\\w+\\.\\w+.*?)\\[\\/url\\]";
        strContent = ubbItem(strContent,"xxxxxxxxxxx",true);
        }
        return strContent;
    }

public static String ubbReplace(String strContent,String re,String replayStr,Pattern pattern,Matcher matcher,boolean IgnoreCase) {
        if (IgnoreCase) {
            pattern = Pattern.compile(re,Pattern.CASE_INSENSITIVE);
        }else{
            pattern = Pattern.compile(re);
        }
        matcher = pattern.matcher(strContent);
        strContent = matcher.replaceAll(replayStr);
        return strContent;
}
原文链接:https://www.f2er.com/regex/358116.html

猜你在找的正则表达式相关文章