Clojure Strings lower-case
2018-12-21 13:57 更新
将字符串转换为所有小写。
语法
以下是lower-case的基本使用语法:
(lower-case s)
参数 − where's'是要转换的字符串。
返回值 − 小写字符串。
例
下面是lower-case函数的示例:
(ns clojure.examples.hello (:gen-class)) (defn hello-world [] (println (clojure.string/lower-case "HelloWorld")) (println (clojure.string/lower-case "HELLOWORLD"))) (hello-world)
输出
以上示例将输出以下结果:
helloworld helloworld
以上内容是否对您有帮助:
更多建议: