正则字符串中含有超连接代码

作者:袖梨 2022-06-25

要判断字符串中是否有url连接代码,我们正则 @"(http|ftp|https教程)://[w]+(.[w]+)([w-.,@?・^=%&:/~+#]*[w-@?^=%&/~+#])";,下面我们用一个实例来说明。

private list geturlfromcontent(string content)
        {
            string regexstr = @"(http|ftp|https)://[w]+(.[w]+)([w-.,@?・^=%&:/~+#]*[w-@?^=%&/~+#])";           

            system.text.regularexpressions.matchcollection mc = system.text.regularexpressions.regex.matches(content, regexstr,               system.text.regularexpressions.regexoptions.ignorecase);

            list urlstr = new list();
            for (int i = 0; i < mc.count; i++)
            {
                if(!urlstr.contains(mc[i].tostring()))
                {
                    urlstr.add(mc[i].tostring());
                }
            }
            return urlstr;
        }

 

相关文章

精彩推荐