Clojure - 字符串 trimr

删除字符串右侧的空格。

语法

语法如下。

(trimr str)

参数 − 'str'是输入字符串。

返回值 − 从字符串末尾删除空格的字符串。

示例

以下是 Clojure 中修剪的示例。

(ns clojure.examples.hello
   (:gen-class))
(defn hello-world []
   (println (clojure.string/trimr " White spaces ")))
(hello-world)

输出

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

White spaces

上面的输出将在字符串的开头包含空格。

❮ clojure_strings.html