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