string tmp = "Monday; 12/11/2013 | 0.23.59
我如何獲得日期字符串,即12/11/2013。我試試這個:如何從此獲取日期字符串?
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#中完成?
謝謝,但錯誤\t爲「串的最佳重載的方法匹配。拆分(char [],System.StringSplitOptions)'有一些無效的參數 –
嘗試它現在寫的方式。我從內存中工作,並經常得到不正確的參數。它現在已經過測試和工作。 – Yuck