去除HTML标记

2021-03-28 10:27

阅读:629

标签:rop   summary   数据库   cmdshell   insert   ignore   stat   spec   replace   

直接操作下面代码即可获取你想要的:

        ///   
        ///   去除HTML标记
        ///   
        ///   包括HTML的源码   
        ///   去除特殊字符   
        ///   已经去除后的文字
        public static string NoHTML(string htmlstring, bool isClearSpechars = true)
        {
            if (String.IsNullOrEmpty(htmlstring))
            {
                return string.Empty;
            }

            //删除脚本
            htmlstring = Regex.Replace(htmlstring, @"", "", RegexOptions.IgnoreCase);
            //删除HTML
            htmlstring = Regex.Replace(htmlstring, @"]*)>", "", RegexOptions.IgnoreCase);
            htmlstring = Regex.Replace(htmlstring, @"([\r\n])[\s]+", "", RegexOptions.IgnoreCase);
            htmlstring = Regex.Replace(htmlstring, @"-->", "", RegexOptions.IgnoreCase);
            htmlstring = Regex.Replace(htmlstring, @"


评论


亲,登录后才可以留言!