re-matcher

added
1.0

ns
clojure.core

type
function

(re-matcher re s)

Returns an instance of java.util.regex.Matcher, for use, e.g. in
re-find.

                user=> (def *matcher* (re-matcher #"\\d+" "abc12345def"))
#'user/*matcher*

user=> (re-find *matcher*)
"12345"