السلسلة النصية s = "2005-2-21"
;
Regex reg = new 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 = new DateTime(year,month,day);