Clojure - 字符串替换



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

语法

以下是语法。

(replace str match replacement)

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

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

示例

以下是 Clojure 中 replace 的示例。

(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.htm
广告