Clojure - String trim



从字符串两端去除空格。

语法

语法如下。

(trim str)

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

返回值 – 去除空格的字符串。

示例

以下是在 Clojure 中 trim 的一个示例。

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

输出

上述程序产生以下输出。

White spaces
clojure_strings.htm
广告