如何查找两个范围内的共同日期

发布于 2024-09-03 14:22:10 字数 123 浏览 6 评论 0原文

我有 2 个日期范围,start_date1..end_date1start_date2..end_date2,是否有一种简单的“ruby”方法来查找这两个范围内的所有日期?

I have 2 date ranges, start_date1..end_date1 and start_date2..end_date2, is there an easy "ruby" way to find all the dates that are in both ranges?

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

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

发布评论

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

评论(1

清秋悲枫 2024-09-10 14:22:10

您可以使用

(start_date1..end_date1).to_set & (start_date2..end_date2).to_set

这里的一个完整的示例:

require 'date'
require 'set'
((Date.today - 3)..(Date.today + 2)).to_set & (Date.today..(Date.today + 5)).to_set

如果您正在计算字符,您也可以这样做

(start_date1..end_date1).to_set & start_date2..end_date2

,但我认为原始版本更清晰。

You can use

(start_date1..end_date1).to_set & (start_date2..end_date2).to_set

here's a fully worked example:

require 'date'
require 'set'
((Date.today - 3)..(Date.today + 2)).to_set & (Date.today..(Date.today + 5)).to_set

if you're counting characters, you can also just do

(start_date1..end_date1).to_set & start_date2..end_date2

but I think the original version is clearer.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文