摘要:
using System; using System.Text.RegularExpressions; namespace CommonTools { /**//// /// RegexLib 的摘要说明。 /// public class RegexLib { //验证Email地址 ... 阅读全文
摘要:
using System.Text.RegularExpressions;//需要引用 // 利用正则表达式去掉""之间的内容 private string StripHT(string strHtml) { Regex regex=new Regex("",RegexOptions.IgnoreCase); string strOutput=regex.Replace(strHt... 阅读全文