gpt4 book ai didi

ruby-on-rails - 获取两个日期之间的月份和年份的唯一数组

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

我有两个 Date 对象,例如:

first = Fri, 02 Dec 2016 
last = Wed, 01 Mar 2017

获取月份和年份之间唯一的数组的最有效方法是什么?在这种情况下,我追求的是:

Dec 2016
Jan 2017
Feb 2017
Mar 2017

最佳答案

require 'date'
def doit(first, last)
first = first << 1
(12*last.year + last.month - 12*first.year - first.month + 1).
times.map { |i| (first = first >> 1).strftime("%b %Y") }
end
first = Date.parse('Fri, 02 Dec 2016')
last = Date.parse('Wed, 01 Mar 2017')
doit(first, last)
#=> ["Dec 2016", "Jan 2017", "Feb 2017", "Mar 2017"]

注意

(12*last.year + last.month - 12*first.year - first.month + 1)

等于范围内的月数。

关于ruby-on-rails - 获取两个日期之间的月份和年份的唯一数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45064402/

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