Skip to content

Instantly share code, notes, and snippets.

@ruseel
Created July 29, 2014 08:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ruseel/f64448ed92cb45086d1b to your computer and use it in GitHub Desktop.
Save ruseel/f64448ed92cb45086d1b to your computer and use it in GitHub Desktop.
parse ISO8601 with clj-time
(require '[clj-time.format :as f])
(def x "2014-07-01T14:01:03+09:00")
(f/parse x)
(f/parse (f/formatters :date-time-no-ms) x)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment