Clojure - 字符串大写



将字符串转换为全大写。

语法

以下是语法。

(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.htm
广告