我如何将标准RSS pubDate字符串格式化为更接近ASP.NET的DateTime?
所以,从这个:
2008年10月29日星期三14:14:48 0000
对此:
2008年10月29日下午2:14
解决方法
接近这一点应该有效:
string orig = "Wed,29 Oct 2008 14:14:48 +0000"; string newstring = String.Format("{0:MM/dd/yyyy hh:mm tt}",DateTime.Parse(orig.Remove(orig.IndexOf(" +"))));
取自http://blog.stevex.net/index.php/string-formatting-in-csharp/