Skip to content

Instantly share code, notes, and snippets.

@danielef
Created January 26, 2017 13:30
Show Gist options
  • Save danielef/90653b4341c3f38db147a8172aa5bf74 to your computer and use it in GitHub Desktop.
Save danielef/90653b4341c3f38db147a8172aa5bf74 to your computer and use it in GitHub Desktop.
Clojure Month to Number
(defn month-text-to-number [text & [locale]]
(let [loc (if locale locale java.util.Locale/ENGLISH)
dfmt (java.text.SimpleDateFormat. "MMM" loc)
date (.parse dfmt text)
cal (doto (java.util.Calendar/getInstance)
(.setTime date))]
(.get cal java.util.Calendar/MONTH)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment