Clojure - 字符串 upper-case

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

语法

语法如下。

(upper-case s)

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

返回值 − 大写字符串。

示例

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

(ns clojure.examples.hello
   (:gen-class))
(defn hello-world []
   (println (clojure.string/upper-case "HelloWorld"))
   (println (clojure.string/upper-case "helloworld")))
(hello-world)

输出

上面的程序产生以下输出。

HELLOWORLD
HELLOWORLD

❮ clojure_strings.html