Clojure - 字符串 trimr 函数



移除字符串右侧的空格。

语法

以下是语法。

(trimr str)

参数 − ‘str’ 是输入字符串。

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

示例

以下是 Clojure 中 trimr 函数的示例。

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

输出

以上程序输出如下。

White spaces

以上输出将在字符串开头保留空格。

clojure_strings.htm
广告