簡單實例:
string s = "2005-2-21";
正規表示式reg = new Regex(@"(?
匹配 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(年,月,日);