gpt4 book ai didi

ruby-on-rails - Ruby/Rails - 日期时间解析

转载 作者:数据小太阳 更新时间:2023-10-29 08:33:50 25 4
gpt4 key购买 nike

我试图将日期作为字符串返回,但从返回的小时中删除第一个 0。

这是我正在使用的代码:

t = Time.new

current_date = Time.local(t.year, t.month, t.day, t.hour, t.min/30*30)
time_str = current_date.strftime("%I.%M+%p").downcase

puts time_str

Outputs:
03.00+pm

Expected output:
3.00+pm # need to remove the last zero from the hour(s)

最佳答案

只需使用 %l 而不是 %I

.strftime("%l.%M+%p")

关于ruby-on-rails - Ruby/Rails - 日期时间解析,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8599353/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com