W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
replace函數(shù)用于將字符串中的子字符串替換為新的字符串值。 使用模式來搜索子字符串。
下面是 replace 的使用示例:
(replace str pat replacestr)
參數(shù) ? '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)
以上示例將輸出以下結(jié)果:
abc789de
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: