简单实例:
string s = "2005-2-21";
Regex reg = Regex ใหม่(@"(?<y>d{4})-(?<m>d{1,2})-(?<d>d{1,2})",RegexOptions .เรียบเรียง);
จับคู่ จับคู่ = reg.Match(s);
int year = int.Parse(match.Groups["y"].Value);
int month = int.Parse(match.Groups["m"].Value);
int day = int .Parse(match.Groups["d"].Value);
DateTime time = DateTime ใหม่ (ปี, เดือน, วัน);