(defn replace-first-str "Replace first occurance of substring a with b in s." {:deprecated "1.2"} [^String a ^String b ^String s] (.replaceFirst (re-matcher (Pattern/quote a) s) b))
Comments top
No comments for replace-first-str. Log in to add a comment.