如何查找两个范围内的共同日期
我有 2 个日期范围,start_date1..end_date1
和 start_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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
这里的一个完整的示例:
如果您正在计算字符,您也可以这样做
,但我认为原始版本更清晰。
You can use
here's a fully worked example:
if you're counting characters, you can also just do
but I think the original version is clearer.