利用正则表达式去掉html代码
摘要:using System.Text.RegularExpressions;//需要引用 // 利用正则表达式去掉""之间的内容 private string StripHT(string strHtml) { Regex regex=new Regex("",RegexOptions.IgnoreCase); string strOutput=regex.Replace(strH...
阅读全文
posted @
2006-09-16 08:59
感動常在
阅读(6404)
推荐(0) 编辑