Clojure - 小写字符串

将字符串转换为全部小写。

语法

语法如下。

(lower-case s)

参数 − 其中"s"是要转换的字符串。

返回值 − 小写字符串。

示例

以下是 Clojure 中小写字母的示例。

(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

❮ clojure_strings.html