2009年8月31日
摘要: using System.Text.RegularExpressions;//需要引用 // 利用正则表达式去掉"<"和">"之间的内容 private string HtmlFilter(string strHtml) { Regex regex=new Regex("<.+?>",RegexOptions.IgnoreCase); string strOutpu... 阅读全文
posted @ 2009-08-31 15:16 彼得 阅读(838) 评论(0) 推荐(0) 编辑