How do I add/subtract/etc. time values in Ruby? For example, how would I add the following times?
00:00:59 + 00:01:43 + 00:20:15 = ?
|
How do I add/subtract/etc. time values in Ruby? For example, how would I add the following times? 00:00:59 + 00:01:43 + 00:20:15 = ? |
|||
|
|
|
Use ActiveSupport, which has a ton of built-in date extensions.
or, if you don't care about the date, only time:
For a full list, check out http://guides.rubyonrails.org/active_support_core_extensions.html#extensions-to-date |
|||
|
|
|
Kind of ugly, but you could use DateTime.parse(each_interval) & calculate the number of seconds in each. Like this:
...which gives you your result in seconds, assuming valid inputs. At which point you can add them together. You could reverse the process to get the interval in your original notation. I really think there ought to be an easier method, but I don't know of one. |
|||
|
|
|
One way would be to convert everything to seconds and then performing the operations... Then you would need to convert it again to a time object with
And you would get the time nicely formatted (as a string). I am trying to find a gem that does this, and other operations. |
|||
|
|
|
You probably want to use a gem that does not concern itself with the actual day. You could perform acrobatics using DateTime and or Time, but you would constantly be battling how to handle days. One gem that may be useful is tod (TimeOfDay), https://github.com/JackC/tod With that you could directly do TimeOfDay.parse "00:01:43", add the values, and print the result using strftime("%H:%M:%S"). |
|||
|
|