Clojure Regular Expressions replace-first
2018-12-23 15:43 更新
replace-first
replace函数用于将字符串中的子字符串替换为新的字符串值,但仅用于子字符串的第一次出现。 使用模式来搜索子字符串。
语法
下面是 replace-first 的使用示例:
(replace-first str pat replacestr)
参数 − 'pat'是正则表达式模式。 'str'是基于模式需要找到文本的字符串。 'replacestr'是需要在基于模式的原始字符串中替换的字符串。
返回值 − 新字符串,其中子字符串的替换是通过正则表达式模式完成的,但只有第一次出现。
例
下面是 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
以上内容是否对您有帮助:
更多建议: