










/// 除去所有在html元素中标记
public static string striphtml(string strhtml)
{
string stroutput=strhtml;
Regex regex = new Regex(@"<[^>]+>|</[^>]+>");
stroutput = regex.Replace(stroutput,"");
return stroutput;
}
posted on 2007-01-24 11:03 HenryZhang 阅读(174) 评论(0) 收藏 举报
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。