Clojure - 字符串分割



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

语法

以下是语法。

(split str reg)

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

返回值 − 分割后的字符串。

示例

以下是 Clojure 中 split 的示例。

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

输出

以上程序产生以下输出。

[Hello World]

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

clojure_strings.htm
广告