Clojure - 字符串 split-lines



字符串分割基于转义字符 \n 或 \r\n。

语法

以下是语法。

(split-lines str)

参数 - ‘str’ 是需要分割的字符串。

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

示例

以下是 Clojure 中 split-lines 的示例。

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

输出

以上程序产生以下输出。

[Hello World]

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

clojure_strings.htm
广告