2016-04-05 235 views
-1

我使用asp.net,我有一個字符串格式「01/29/2016」。如何將此字符串格式設置爲「29/01/2016」輸出?因爲該值將在報告的過濾處理,將字符串格式轉換爲格式日期樣式

謝謝你,

+0

可能的重複http://stackoverflow.com/q/15738608/3883460 –

回答

0

首先您字符串格式轉換爲日期時間。使用以下內容

DateTime YourDate= DateTime.ParseExact(
      "01/29/2016", 
      "MM/dd/yyyy", 
      CultureInfo.InvariantCulture); 

然後將此日期時間轉換爲您所需的格式。

string myDateString = YourDate.ToString("dd/MM/yyyy"); 
0

如果它是你可以使用 Date.toString(DD/MM/YYYY) 如果不做字符串的皈依日期值事先與 DateTime.Parse(串)

0
DateTime.ParseExact (myString, "d", CultureInfo.InvariantCulture).ToString (@"dd/MM/yyyy"); 

這應該做的伎倆爲您

相關問題