要查找字符串中的字符数,可以使用count函数。
以下是语法。
(count stringvariable)
Parameters - 'Stringvariable,是需要确定字符数的字符串。
Return Value - 字符串中的字符数。
以下是Clojure中字符串格式的示例。
(ns clojure.examples.hello
(:gen-class))
(defn hello-world []
(println (count "Hello")))
(hello-world)
上述程序产生以下输出。
5