我的系統日期格式是dd-MM-yyyy(20-10-2012),我得到日期並使用分隔符分割日期,月份和年份。我需要轉換日期格式(dd/MM/yyyy)格式是否以任何日期格式返回。獲取系統日期和分割日期,月份和年份
string sDate = string.Empty;
DateTime _date = DateTime.Now;
int count = 0;
string format = "dd-MM-yyyy";
sDate = dateFormat.ToString(format);
string[] Words = sDate.Split(new char[] { '-' });
foreach (string Word in Words)
{
count += 1;
if (count == 1) { Day = Word; }
if (count == 2) { Month = Word; }
if (count == 3) { Year = Word; }
}
的重複:HTTP://stackoverflow.com/questions/12985802/im-getting-cultureinfo-invariantculture-format-for-mm-dd-yyyy-but-i-want- to-ge – SearchAndResQ
如果你已經有'DateTime'對象,爲什麼你不能簡單地使用它定義的屬性? 'Year','Month'和'Day'應該直接給你你需要的值。我沒有看到將字符串轉換爲字符串的方法,然後您可以提取已經很容易到達的數據。 – Oded
@Oded我完全同意你..... – Ram