简单实例:
string s = "2005-2-21";
正则表达式 reg = new Regex(@"(?<y>d{4})-(?<m>d{1,2})-(?<d>d{1,2})",RegexOptions .编译);
匹配 match = reg.Match(s);
int 年 = int.Parse(match.Groups["y"].Value);
int 月份 = int.Parse(match.Groups["m"].Value);
int day = int .Parse(match.Groups["d"].Value);
DateTime 时间 = new DateTime(年,月,日);