2007年3月23日
摘要: using System; using System.Text.RegularExpressions; namespace CommonTools { /**//// /// RegexLib 的摘要说明。 /// public class RegexLib { //验证Email地址 ... 阅读全文
posted @ 2007-03-23 16:04 kingeric 阅读(242) 评论(0) 推荐(0) 编辑
摘要: using System.Text.RegularExpressions;//需要引用 // 利用正则表达式去掉""之间的内容 private string StripHT(string strHtml) { Regex regex=new Regex("",RegexOptions.IgnoreCase); string strOutput=regex.Replace(strHt... 阅读全文
posted @ 2007-03-23 16:01 kingeric 阅读(323) 评论(0) 推荐(0) 编辑