ClojureDocs

导航

命名空间

小写

clojure.string

从 1.2 起可用
  • (lower-case s)
Converts string to all lower-case.
1 Example
user=> (clojure.string/lower-case "MiXeD cAsE")
"mixed case"
See Also

Converts string to all upper-case.

Added by jafingerhut

Converts first character of the string to upper-case, all other characters to lower-case.

Added by jafingerhut
0 Notes
No notes for lower-case