/// <summary>
///
去除html标签
///
</summary>
public static
string ClearHtmlTag(string
strText)
{
try
{
string html =
strText;
html = Regex.Replace(html, @"<[^>]+/?>|</[^>]+>", "",
RegexOptions.IgnoreCase);
html = Regex.Replace(html, @"-->", "",
RegexOptions.IgnoreCase);
html = Regex.Replace(html, @"<!--.*", "",
RegexOptions.IgnoreCase);
html = Regex.Replace(html, @"&(nbsp|#160);", " ",
RegexOptions.IgnoreCase);
html = Regex.Replace(html, @"&#(\d+);", "",
RegexOptions.IgnoreCase);
return
html;
}
catch
{
return
strText;
}
}
相关文章
- 09-15HTML5新增常用标签
- 09-15四十:HTML5之HTML5标签变化之删除的标签和重定义的标签
- 09-15html之标签(2)
- 09-15QTP的那些事---通过html标签的属性获取对象(类似onclick的属性)
- 09-1534-10000 web入门 HTML5布局 (div标签使用)持续高强度的投入技术研发工作,才能创造大的价值!
- 09-15HTML标签天天练7--表单1[text][password][radio]
- 09-15HTML标签天天练7--表单4[textarea]到此 表单学习结束
- 09-15HTML标签天天练7--表单2[select][option][checkbox]
- 09-15两种清除html中标签的方法
- 09-157.HTML图像标签