从字符串的右侧删除空格。
以下是语法。
(trimr str)
Parameters - 'str'是输入字符串。
Return Value - 从字符串末尾删除空格的字符串。
以下是Clojure中修剪器的示例。
(ns clojure.examples.hello
(:gen-class))
(defn hello-world []
(println (clojure.string/trimr " White spaces ")))
(hello-world)
上述程序产生以下输出。
White spaces
上面的输出将在字符串的开头有空格。