Clojure - 正则表达式替换



替换

replace 函数用于将字符串中的子字符串替换为新的字符串值。子字符串的搜索是使用模式进行的。

语法

以下是语法。

(replace str pat replacestr)

参数 - ‘pat’ 是正则表达式模式。‘str’ 是需要根据模式查找文本的字符串。‘replacestr’ 是需要根据模式替换原始字符串中的字符串。

返回值 - 新字符串,其中通过正则表达式模式对子字符串进行了替换。

示例

以下是 Clojure 中 replace 的示例。

(ns clojure.examples.example
   (:gen-class))

;; This program displays Hello World
(defn Example []
   (def pat (re-pattern "\\d+"))
   (def newstr (clojure.string/replace "abc123de" pat "789"))
   (println newstr))
(Example)

输出

以上程序产生以下输出。

abc789de
clojure_regular_expressions.htm
广告