Skip to content

Instantly share code, notes, and snippets.

@abarnash
Created August 16, 2016 18:53
Show Gist options
  • Save abarnash/b0af4fb323748f0177268f0e4a412ecb to your computer and use it in GitHub Desktop.
Save abarnash/b0af4fb323748f0177268f0e4a412ecb to your computer and use it in GitHub Desktop.
Converts an ISO duration string to Millisecond value in clojure
(ns duration-to-ms)
(defn string->millis [duration-str]
(.getMillis (.toStandardDuration (org.joda.time.Period. duration-str))))
;; Example
;;=> (string->millis "PT8M56S")
;;53600
;;=>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment