C#替换HTML标签

public string RemoveHtml(string str)
{
string temp = Regex.Replace(str, "<[^>]*>", "");
temp = temp.Replace(" ", " ").Replace("&#8221;", "”").Replace("&#8220;","“");
return temp ;
}



本文转自94cool博客园博客,原文链接:http://www.cnblogs.com/94cool/archive/2009/08/24/1552632.html,如需转载请自行联系原作者

上一篇:使用 nginx 和 rtmp 插件搭建视频直播和点播服务器


下一篇:Webpack 2 视频教程 003 - Webpack 项目初始化