Skip to content

Instantly share code, notes, and snippets.

@mikecmpbll
Created September 13, 2013 12:16
Show Gist options
  • Save mikecmpbll/6549914 to your computer and use it in GitHub Desktop.
Save mikecmpbll/6549914 to your computer and use it in GitHub Desktop.
UNITS_IN_MS = {
0 => 3600000, #hour
1 => 60000, #minute
2 => 1000 #second
}
time = "00:00:33.55"
ms = time.split(":").each_with_index.map{|d, i| d.to_f*UNITS_IN_MS[i]}.reduce(:+).to_i
=> 33550
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment