user=> (clojure.string/upper-case "MiXeD cAsE") "MIXED CASE"
Converts string to all lower-case.
Converts first character of the string to upper-case, all other cha
(defn ^String upper-case "Converts string to all upper-case." {:added "1.2"} [^CharSequence s] (.. s toString toUpperCase))
Comments top
No comments for upper-case. Log in to add a comment.