摘要: 正则表达式中的组集合的使用 简单实例: 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... 阅读全文