Clojure - 字符串计数

要查找字符串中的字符数,可以使用 count 函数。

语法

语法如下。

(count stringvariable)

参数 − 'Stringvariable,是需要确定字符个数的字符串。

返回值 − 字符串中的字符数。

示例

以下是 Clojure 中字符串格式的示例。

(ns clojure.examples.hello
   (:gen-class))
(defn hello-world []
   (println (count "Hello")))
(hello-world)

输出

上面的程序产生以下输出。

5

❮ clojure_strings.html