using System.Text.RegularExpressions;//需要引用
//利用正規表示式除去"<"和">"之間的內容
私有字串 StripHT(字串 strHtml)
{
正規表示式 regex=new Regex("<.+?>",RegexOptions.IgnoreCase);
字串 strOutput=regex.Replace(strHtml,"");
返回 str 輸出;
}
//方法二(不知道為什麼這個方法佔用CPU100%)
public static string DropHTML(string strHtml)
{
字串[] aryReg ={
@"<腳本[^>]*?>.*?</腳本>",
@"<(/s*)?!?((w+:)?w+)(w+(s*=?s*(([""''])( \["" ''tbnr]|[^7])*?7|w+)|.{0})|s)*?(/s *)?>",
@"([r])[s]+",
@"&(quot|#34);",
@“&(amp|#38);”,
@“&(lt|#60);”,
@“&(gt|#62);”,
@“&(nbsp|#160);”,
@“&(iexcl|#161);”,
@"&(cent|#162);",
@“&(磅|#163);”,
@“&(複製|#169);”,
@"&#(d+);",
@“-->”,
@"<!--.*"
};
字串[] aryRep = {
"",
"",
"",
""",
“&”,
“<”,
”>”,
“”,
"xa1",//chr(161),
"xa2",//chr(162),
"xa3",//chr(163),
"xa9",//chr(169),
"",
“r”,
””
};
字串 newReg =aryReg[0];
字串 strOutput=strHtml;
for(int i = 0;i<aryReg.Length;i++)
{
正規表示式 正規表示式 = new Regex(aryReg[i],RegexOptions.IgnoreCase );
strOutput = regex.Replace(strOutput,aryRep[i]);
strOutput.Replace
("<","");
strOutput.Replace(">","");
strOutput.Replace("r","");
返回 str 輸出;
}
http://www.cnblogs.com/wang123/archive/2006/09/16/505758.html