首页 相关文章 正则表达式过滤html的标签对

正则表达式过滤html的标签对

public string DealHtml(string str)
{
//str = Regex.Replace(str, @"(img)[^]*|/(img)", "", RegexOptions.IgnoreCase);
str = Regex.Replace(str, @"(table|tbody|tr|td|th)[^]*|/(table|tbody|tr|td|th)", "", RegexOptions.IgnoreCase);
str = Regex.Replace(str, @"(div|blockquote|fieldset|legend)[^]*|/(div|blockquote|fieldset|legend)", "", RegexOptions.IgnoreCase);
//str = Regex.Replace(str, @"(font|i|u|h[1-9]|s)[^]*|/(font|i|u|h[1-9]|s)", "", RegexOptions.IgnoreCase);
//str = Regex.Replace(str, @"(style|strong)[^]*|/(style|strong)", "...[ 查看全文 ]

2016-02-19 标签:

正则表达式过滤html的标签对的相关文章

手机页面
收藏网站 回到头部