Created
May 12, 2015 17:29
-
-
Save kernelp4nic/737d46c1f0ad5bfda80b to your computer and use it in GitHub Desktop.
title case word clojure
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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