摘要:
正则表达式中的组集合的使用 简单实例: string s = "2005-2-21"; Regex reg = new Regex(@"(?\d{4})-(?\d{1,2})-(?\d{1,2})",RegexOptions.Compiled); Match match = reg.Match(s); int year = int.P... 阅读全文
posted @ 2006-11-17 15:25
狂风
阅读(384)
评论(0)
推荐(0)
浙公网安备 33010602011771号