码迷,mamicode.com
首页 > Web开发 > 详细

清理Html标签(只是清理了css样式)

时间:2018-07-31 11:08:30      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:class   tin   时间   param   art   end   标签   turn   color   

     /// <summary>
        /// 时间:2018年7月18日09:04:18
        /// 说明:清理Html标签
        /// 作者:成建军
        /// </summary>
        /// <param name="html"></param>
        /// <returns></returns>
        public static string ClearHtml(string html)
        {
            try
            {
                if (string.IsNullOrEmpty(html))
                    return html;

                while (html.IndexOf("<") >= 0)
                {
                    var startIndex = html.IndexOf("<");
                    var endIndex = html.IndexOf(">") + 1;
                    if (endIndex > startIndex)
                        html = html.Remove(startIndex, endIndex - startIndex);
                }
            }
            catch (Exception)
            {
                return html;
            }

            return html;
        }

 

清理Html标签(只是清理了css样式)

标签:class   tin   时间   param   art   end   标签   turn   color   

原文地址:https://www.cnblogs.com/opts/p/9394075.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!