正则匹配连接

前端之家收集整理的这篇文章主要介绍了正则匹配连接前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

上码:

string[] imgtag = { ".gif",".jpg",".png",".jpeg" };
            string tpllink = "<a target=\"_blank\" style=\"color:#e25252;text-decoration: underline;\" href='{0}'>{1}</a>";
            Regex re = new Regex(@"((http|https)://)?(([a-zA-Z0-9\._-]+\.[a-zA-Z]{2,6})|([0-9]{1,3}\.[0-9]{1,3}))(:[0-9]{1,4})*(/[^<|^>]*)?");
            MatchCollection matchCollection = re.Matches(txtmsg);
            HashSet<string> urlKeys = new HashSet<string>();
            foreach (Match m in matchCollection)
            {
                if (imgtag.Any(x => m.Value.Contains(x)))
                {
                    continue;
                }

                if (urlKeys.Add(m.Value))
                {
                    txtmsg = txtmsg.Replace(m.Value,String.Format(tpllink,m.Value.Contains("http://") ? m.Value : "http://" + m.Value,m.Value));
                }
            }
原文链接:https://www.f2er.com/regex/358142.html

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