string tmp = "Monday; 12/11/2013 | 0.23.59
我将如何获得日期字符串,即 2013 年 12 月 11 日。我试过这个:
int sep=tmp.IndexOf(";");
int lat=tmp.IndexOf("|");
string thu = tmp.Substring(0, sep);
string tem = tmp.Substring(lat + 1);
string ngay = tmp.Substring(sep, tmp.Length - (sep+tem.Length);
Console.WriteLine("Date: {0}", ngay);
这如何在 C# 中完成?