如何反向循环日期范围?
我有一个日期范围,我希望能够反向循环。给出以下内容,我将如何完成此操作,标准 Range
运算符似乎无法正常工作。
>> sd = Date.parse('2010-03-01')
=> Mon, 01 Mar 2010
>> ed = Date.parse('2010-03-05')
=> Fri, 05 Mar 2010
>> (sd..ed).to_a
=> [Mon, 01 Mar 2010, Tue, 02 Mar 2010, Wed, 03 Mar 2010, Thu, 04 Mar 2010, Fri, 05 Mar 2010]
>> (ed..sd).to_a
=> []
正如您所看到的,范围运算符从开始到结束可以正常工作,但从结束到开始却不能正常工作。
I have a date range that I would like to be able to loop through in reverse. Give the following, how would I accomplish this, the standard Range
operator doesn't seem t be working properly.
>> sd = Date.parse('2010-03-01')
=> Mon, 01 Mar 2010
>> ed = Date.parse('2010-03-05')
=> Fri, 05 Mar 2010
>> (sd..ed).to_a
=> [Mon, 01 Mar 2010, Tue, 02 Mar 2010, Wed, 03 Mar 2010, Thu, 04 Mar 2010, Fri, 05 Mar 2010]
>> (ed..sd).to_a
=> []
as you can see, the range operator works properly form start to end, but not from end to start.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试 upto/downto :
Try upto/downto :
我通常只是反转结果数组:
我想,当您不知道开始日期是在结束日期之前还是之后时,为了让它做正确的事情,您需要以下内容
:无论哪种方式都会给你正确的东西:
I usually just reverse the resulting array:
I guess, to make it do the right thing when you don't know if the start date is going to be before or after the end date, you'd want something along the lines of:
which will give you the right thing either way: