截取HTML字符串

public static string RemoveHTML(string strHTML)
{
System.Text.RegularExpressions.Regex Regexp=new System.Text.RegularExpressions.Regex("<.+?>");
string strReturn=Regexp.Replace(strHTML,"");
return strReturn;
posted @ 2009-03-21 09:54  Devil_Zhang  阅读(399)  评论(1编辑  收藏  举报