Skip to content

Instantly share code, notes, and snippets.

@kernelp4nic
Created May 12, 2015 17:29
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 kernelp4nic/737d46c1f0ad5bfda80b to your computer and use it in GitHub Desktop.
Save kernelp4nic/737d46c1f0ad5bfda80b to your computer and use it in GitHub Desktop.
title case word clojure
(defn- title-case-word [w]
(if (zero? (count w))
w
(str (Character/toTitleCase (first w))
(subs w 1))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment