正则删除 html 代码



    public string DelData(string HTML)
        
{
            System.Text.RegularExpressions.Regex regEx 
= new System.Text.RegularExpressions.Regex(@"<\/*[^<>]*>",System.Text.RegularExpressions.RegexOptions.IgnoreCase);
            
return regEx.Replace(HTML,"");
        }
原文地址:https://www.cnblogs.com/gwazy/p/1208588.html