close
static string StripHtmlTags(string text)
{
Regex r = new Regex(@"<head[\s\S]*?</head([^>])*>|<(script|style)[\s\S]*?</(script|style)([^>])*>|<(.|\n)*?>");
return r.Replace(text, string.Empty);
}
目前發現的漏網之魚
<!-- <span>abc</span> -->
會變成 abc -->
全站熱搜
留言列表