C#去掉html标签正则表达式

//HTMLStr要去掉标签的数据 

System.Text.RegularExpressions.Regex.Replace(HTMLStr, "<[^>]*>", "");

原文地址:https://www.cnblogs.com/yshj/p/2784611.html