2010年1月7日
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Xml.Serialization;using System.IO;namespace TestXmlSerializer{ public class Program { static string xml =... 阅读全文
posted @ 2010-01-07 23:26 shawnliu 阅读(223) 评论(0) 推荐(0)
摘要: 有段时间没用Regex,很多规则记的不是很清楚了。复习一下。Regex一般能解决比如文本匹配,字符串替换,和字符串查找方面的问题。对于查找,要理解Match Collection和Match Group的含义。collection对应于有多少个匹配,group对应于每个匹配中设置的group默认group[0]为一个匹配的完整string,group通过()来定义,如果没有显示为每个group命名... 阅读全文
posted @ 2010-01-07 22:24 shawnliu 阅读(211) 评论(0) 推荐(0)