一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

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

时间:2011-02-13 编辑:简简单单 来源:一聚教程网

要判断字符串中是否有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;
        }

 

热门栏目