Clojure Strings trimr
2018-12-21 14:20 更新
从字符串的右侧删除空格。
语法
以下是trimr的基本使用语法:
(trimr str)
参数− 'str'是输入字符串。
返回值 − 从字符串末尾删除空格的字符串。
例
下面是trimr函数的示例:
(ns clojure.examples.hello (:gen-class)) (defn hello-world [] (println (clojure.string/trimr " White spaces "))) (hello-world)
输出
以上示例将输出以下结果:
White spaces
上面的输出在字符串的开头有空格。
以上内容是否对您有帮助:
更多建议: