在 Ruby / Rails 中从默认日期中删除开头“0”的最干净方法是什么?
在 /initializers/time_formats.rb 中,我有这个:
Time::DATE_FORMATS[:profile] = "%m / %d / %Y"
但是,这显然会产生日期,例如: 09 / 08 / 2001
谷歌告诉我,我最好的选择是使用某种 gsub 正则表达式来编辑 0。这是真的还是有更好的选择?
In /initializers/time_formats.rb I have this:
Time::DATE_FORMATS[:profile] = "%m / %d / %Y"
However this obviously produces dates such as: 09 / 08 / 2001
Google tells me my best bet is to use some kind of gsub regular expression to edit out the 0's. Is this true or is there a better alternative?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果你想对某些部分使用格式字符串,你可以这样做:
if you want to use format string for some parts, you can do something like:
您可能可以使用 '%e' 来获取不带前导零的日期数字;然而,“strftime()”的手册页(通常是这些基于时间的转换的基础)并没有显示几个月来执行此操作的方法,因此正则表达式解决方案可能是一种方法,尽管可能还有其他方法更多 Ruby 惯用方法可以达到相同的结果。
You could probably use '%e' to get the day number without the leading zero; however, the manual page for 'strftime()' - which usually underlies these time-based conversions - does not show a way to do that for the months, so the regex solution is perhaps one way to do it, though there might be other more Ruby-idiomatic ways to achieve the equivalent result.
您可以使用 lambda/proc 作为 Time::DATE_FORMATS 中的格式,例如请
注意,默认 Time::DATE_FORMATS 对
:long_ordinal
和:rfc822
使用 lambda格式。You can use a lambda/proc as a format in Time::DATE_FORMATS, e.g.
Note that the default Time::DATE_FORMATS uses a lambda for both the
:long_ordinal
and:rfc822
formats.