将 2 个字符串格式化为 RSS PubDate

发布于 2024-11-06 13:50:07 字数 126 浏览 0 评论 0原文

我有 2 个字符串,日期:“27.03.11”和时间:“15:04”,它喜欢将其格式化为 rss 文件的 PubDate 元素,例如 Fri, 18 Nov 2005 19:12:30 GMT。 我怎样才能在C Sharp 中做到这一点?

ive got 2 strings, date:"27.03.11 " and time:"15:04", which id like to format as a PubDate elemnt for a rss file like Fri, 18 Nov 2005 19:12:30 GMT.
How can i do this in c sharp?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浅浅淡淡 2024-11-13 13:50:08

使用以下步骤:

由于 RSS 要求日期采用 RFC 822 格式,因此以下相关 SO 问题可能会帮助您完成最后一步:

编辑: 对于第一步,请看一下这个示例:(

var s = "27.03.11 15:04"; 
var dtm = DateTime.ParseExact(s, @"dd.MM.yy HH\:mm", null);

\: 确保 : 被视为文字 : 而不是文化特定的时间分隔符。)

Use the following steps:

Since RSS requires dates to be in the RFC 822 format, the following related SO question might help you with the last step:

EDIT: For the first step, have a look at this example:

var s = "27.03.11 15:04"; 
var dtm = DateTime.ParseExact(s, @"dd.MM.yy HH\:mm", null);

(The \: ensures that : is seen as a literal : rather than a culture-specific time separator.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文