Clojure Strings upper-case

2018-12-21 13:57 更新

将字符串转换为全大写。

语法

以下是upper-case的基本使用语法:

(upper-case s)

参数 − where's'是要转换的字符串。

返回值 − 大写字符串。

下面是upper-case函数的示例:

(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
以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号