Q
轉換日期格式
2
A
回答
4
DateTime temp = DateTime.Parse("7/30/2010 11:05:53 AM");
string converted = temp.ToString("dd/MM/yyyy");
- 使用嘗試解析---
// Try Parse is better because if the format is invalid an exception is not thrown.
DateTime temp;
string converted = string.Empty;
if (DateTime.TryParse("7/30/2010 11:05:53 AM", out temp))
{
// True means Date was converted properly
converted = temp.ToString("dd/MM/yyyy");
}
else
{
converted = "ERROR in PARSING";
}
+1
.NET有時很漂亮 – 2010-07-22 14:02:53
+0
這裏沒有人使用TryParse? – fletcher 2010-07-22 14:10:08
+0
@fletcher問,你會收到。 – 2010-07-22 14:12:35
0
DateTime.ToString("dd/MM/yyyy");
0
我相信你可以使用DateTime.Parse("7/30/2010 11:05:53 AM").ToShortDate()
(取決於文化)
0
嘗試的
DateTime dtTest = Convert.ToDateTime("7/30/2010 11:05:53 AM");
Response.Write(dtTest.ToString("dd/MM/yyyy"));
相關問題
- 1. 轉換日期到MySQL日期格式
- 2. 轉換日期格式/加密日期
- 3. 轉換日期格式SQL
- 4. 轉換日期格式
- 5. 轉換日期格式
- 6. Metl - 轉換日期格式
- 7. XSLT轉換日期格式
- 8. 轉換日期格式
- 9. 日期格式轉換javascript
- 10. R:日期格式轉換
- 11. 日期格式轉換Ruby
- 12. 轉換日期格式
- 13. CMake轉換日期格式
- 14. 日期格式轉換javascript
- 15. 轉換日期格式
- 16. 轉換日期格式
- 17. Java日期格式轉換
- 18. javascript日期格式轉換
- 19. javascript日期格式轉換
- 20. 轉換日期格式
- 21. 轉換日期格式
- 22. iOS日期格式轉換?
- 23. 轉換日期格式Perl
- 24. 轉換此日期格式
- 25. 轉換日期格式
- 26. 轉換日期格式
- 27. 轉換日期格式
- 28. PHP日期格式轉換
- 29. 轉換爲日期格式
- 30. Sql轉換日期格式
可能重複的[如何任何類型的日期轉換爲DD /月/年](http://stackoverflow.com/questions/3248561/how-to-convert-any-type- date-to-dd-mm-yyyy) – 2010-07-22 14:25:48