Converts string to all lower-case.
user=> (clojure.string/lower-case "MiXeD cAsE") "mixed case"
Converts string to all upper-case.
Converts first character of the string to upper-case, all other characters to lower-case.
lower-case