how to parse a time in Ruby which takes a string in HH:MM and calculate seconds into the day

463 Views Asked by At

I have method which takes a string in HH:MM format and it should calculate how many seconds into the day it is

1

There are 1 best solutions below

0
On
Time.strptime(myString, "%H:%M") - Time.now.beginning_of_day