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