asp.net – 将RSS pubDate格式化为.NET DateTime

前端之家收集整理的这篇文章主要介绍了asp.net – 将RSS pubDate格式化为.NET DateTime前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我如何将标准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/

原文链接:https://www.f2er.com/aspnet/248180.html

猜你在找的asp.Net相关文章