// "01:02:03" => 3723
def colon_separated_to_i(str) time_arr = [] time_arr = str.split(":").reverse sec = 0 secs = [1, 60, 60*60, 60*60*24] time_arr.size.times do {|i| sec += secs[i].to_i * time_arr[i].to_i end sec end
11383 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
def colon_separated_to_i(str) time_arr = [] time_arr = str.split(":").reverse sec = 0 secs = [1, 60, 60*60, 60*60*24] time_arr.size.times do {|i| sec += secs[i].to_i * time_arr[i].to_i end sec end
You need to create an account or log in to post comments to this site.