微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

正则匹配连接

上码:

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.jb51.cc/regex/358142.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐