Clojure - 正则表达式 replace-first



replace-first

replace 函数用于将字符串中的子字符串替换为新的字符串值,但只替换子字符串的第一次出现。子字符串的搜索是使用模式进行的。

语法

以下是语法。

(replace-first str pat replacestr)

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

返回值 − 新字符串,其中子字符串的替换是通过正则表达式模式完成的,但只替换第一次出现的。

示例

以下是 Clojure 中 replace-first 的示例。

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