Clojure - 字符串 triml

删除字符串左侧的空格。

语法

语法如下。

(triml str)

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

返回值 − 从字符串开头删除空格的字符串。

示例

以下是 Clojure 中 triml 的示例。

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

输出

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

White spaces

上面的输出将在字符串末尾包含空格。

❮ clojure_strings.html