Clojure - 字符串分割线

根据转义字符\n或\r\n分割字符串。

语法

语法如下。

(split-lines str)

参数 − 'str'是需要分割的字符串。

返回值 − 分割字符串。

示例

以下是 Clojure 中的分割线示例。

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

输出

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

[Hello World]

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

❮ clojure_strings.html