03 2007 档案
几个C#常用正则表达式的总结
摘要:using System; using System.Text.RegularExpressions; namespace CommonTools { /**//// /// RegexLib 的摘要说明。 /// public class RegexLib { //验证Email地址 ...
阅读全文
利用正则表达式去掉html代码
摘要:using System.Text.RegularExpressions;//需要引用 // 利用正则表达式去掉""之间的内容 private string StripHT(string strHtml) { Regex regex=new Regex("",RegexOptions.IgnoreCase); string strOutput=regex.Replace(strHt...
阅读全文
兩個數據庫数据导入导出问题
摘要:如果两个数据库的表结构都相同! select into a select * from b; commit;
阅读全文