Ruby:格式化已经格式化的日期字符串

发布于 2024-12-05 12:01:44 字数 98 浏览 2 评论 0原文

我有一个返回的日期字符串,如下所示: 02-22-2011 我需要将其转换为 2011 年 2 月 22 日...是否有办法在 Ruby 中轻松解决此问题?

I have a date string that comes back like this: 02-22-2011 I need to turn that into Feb 22, 2011... is there anyway to easily due this in Ruby?

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

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

发布评论

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

评论(3

笑脸一如从前 2024-12-12 12:01:44

想通了!我使用了 Chronic (http://chronic.rubyforge.org/)

Chronic.parse('02-22-2011').strftime("%b %d, %Y")

Figured it out! I used Chronic (http://chronic.rubyforge.org/)

Chronic.parse('02-22-2011').strftime("%b %d, %Y")

吃颗糖壮壮胆 2024-12-12 12:01:44

您还可以使用 Time.parse,而不是仅仅为此需要 gem。

Instead of requiring a gem just for this, you can also use Time.parse.

往昔成烟 2024-12-12 12:01:44

我会推荐 Date.strptime。这有点像恢复 strftime。
然后您可以使用 strftime 获取日期的字符串版本。

require 'date'
p Date.strptime('02-22-2011', '%m-%d-%Y') #-> #<Date: 2011-02-22 (4911229/2,0,2299161)>
p Date.strptime('02-22-2011', '%m-%d-%Y').strftime("%b %d, %Y") #"Feb 22, 2011"

I would recommend Date.strptime. It's kind of a revert strftime.
Then you can use strftime to get the string version of the date.

require 'date'
p Date.strptime('02-22-2011', '%m-%d-%Y') #-> #<Date: 2011-02-22 (4911229/2,0,2299161)>
p Date.strptime('02-22-2011', '%m-%d-%Y').strftime("%b %d, %Y") #"Feb 22, 2011"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文