Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9195949
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T21:44:32+00:00 2026-06-17T21:44:32+00:00

I want to know if Ruby has an easy way to find all the

  • 0

I want to know if Ruby has an easy way to find all the date range between two date ranges. I have two date arrays: January 01, 08:00 and January 01, 12:00 in one array, and January 01, 09:00 to January 01, 10:00 in another. I want to return an array like:

January 1, 08:00 to January 1, 09:00

and:

January 1, 10:00 to January 1, 12:00
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T21:44:33+00:00Added an answer on June 17, 2026 at 9:44 pm

    This is one way to do it:

    date_array_1, date_array_2 = [
      'January 01, 08:00', 'January 01, 12:00',
      'January 01, 09:00', 'January 01, 10:00'
    ].map{ |s| DateTime.parse(s) }.each_slice(2).to_a
    

    That sets up two arrays of dates.

    require 'date'
    
    def date_ranges(ary1, ary2)
      [
        ary1,
        ary2
      ].flatten.sort.each_slice(2).map{ |s| s.first .. s.last }
    end
    
    puts date_ranges(date_array_1, date_array_2)
    

    Which outputs:

    2013-01-01T08:00:00+00:00..2013-01-01T09:00:00+00:00
    2013-01-01T10:00:00+00:00..2013-01-01T12:00:00+00:00
    

    if I want to have date_array_2 to be an array of date? is it easy? Like date_array_1 = [‘January 01, 08:00’, ‘January 01, 13:00’] date_array_2 = [[‘January 01, 09:00’, ‘January 01, 10:00’], [‘January 01, 11:00’, ‘January 01, 12:00’]]

    The two date arrays look like:

    date_array_1 = ['January 01, 08:00', 'January 01, 12:00']
    date_array_2 = ['January 01, 09:00', 'January 01, 10:00']
    

    Coerce them into DateTime objects:

    [ date_array_1, date_array_2 ].map{ |a| a.map!{ |d| DateTime.parse(d) } }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I just want to know whether ruby regex has a not match operator just
OS: Mint Linux 11 64bit I know nothing about ruby, I just want Compass.
I know how to do this in Ruby, but I want to do this
I have an android app it displays web view.I want know the app idle
Want to know what is the difference between ipv4 and ipv6 and how does
So all I simply want to do is make a Ruby program that reads
I know Ruby has a map! method which do this. In PowerShell currently what
I have got an array of objects in ruby and I want to iterate
anybody know a way to just get emailed when new versions of Ruby and
I have some data inside this variable and I want to know how could

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.