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 cha
(defn ^String lower-case "Converts string to all lower-case." {:added "1.2"} [^CharSequence s] (.. s toString toLowerCase))
Comments top
No comments for lower-case. Log in to add a comment.