Clojure - 正则表达式 replace-first
replace-first
replace 函数用于将字符串中的子字符串替换为新的字符串值,但仅限于该子字符串第一次出现。 子字符串的搜索是通过使用模式来完成的。
语法
语法如下。
(replace-first 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 newstr1 (clojure.string/replace "abc123de123" pat "789")) (def newstr2 (clojure.string/replace-first "abc123de123" pat "789")) (println newstr1) (println newstr2)) (Example)
上面的例子显示了replace和replace-first函数之间的区别。
输出
上面的程序产生以下输出。
abc789de789 abc789de123
❮ clojure_regular_expressions.html