Clojure - 字符串替换

用替换字符串替换字符串中匹配的所有实例。

语法

语法如下。

(replace str match replacement)

参数 − 'str'是输入字符串。 "match"是将用于匹配过程的模式。 'replacement'将是每个模式匹配将被替换的字符串。

返回值 − 根据模式匹配具有替换值的字符串。

示例

以下是 Clojure 中替换的示例。

(ns clojure.examples.hello
   (:gen-class))
(defn hello-world []
   (println (clojure.string/replace "The tutorial is about Groovy" #"Groovy"
      "Clojure")))
(hello-world)

输出

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

The tutorial is about clojure

❮ clojure_strings.html