Clojure - 正则表达式替换
replace
replace 函数用于将字符串中的子字符串替换为新的字符串值。 子字符串的搜索是通过使用模式来完成的。
语法
语法如下。
(replace str pat replacestr)
参数 − 'pat' 是正则表达式模式。 'str'是需要根据模式在其中查找文本的字符串。 'replacestr'是根据模式需要在原始字符串中替换的字符串。
返回值 − 新字符串,其中子字符串的替换是通过正则表达式模式完成的。
示例
以下是 Clojure 中替换的示例。
(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.html