Clojure Strings count
2018-12-21 13:56 更新
要查找字符串中的字符数,可以使用count函数。
语法
以下是count的基本使用语法:
(count stringvariable)
参数− 'Stringvariable,是需要确定字符数的字符串。
返回值 − 字符串中的字符数。
例
下面是count函数的示例:
(ns clojure.examples.hello (:gen-class)) (defn hello-world [] (println (count "Hello"))) (hello-world)
输出
以上示例将输出以下结果:
5
以上内容是否对您有帮助:
更多建议: