Clojure - 字符串分割 split

根据正则表达式分割字符串。

语法

语法如下。

(split str reg)

参数 − 'str'是需要分割的字符串。 'reg'是需要进行字符串分割的正则表达式。

返回值 − 分割字符串。

示例

以下是 Clojure 中拆分的示例。

(ns clojure.examples.hello
   (:gen-class))
(defn hello-world []
   (println (clojure.string/split "Hello World" #" ")))
(hello-world)

输出

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

[Hello World]

请注意,在上面的输出中,字符串"Hello"和"World"都是单独的字符串。

❮ clojure_strings.html