Returns an instance of java.util.regex.Matcher, for use, e.g. in
re-find.
(defn re-matcher
"Returns an instance of java.util.regex.Matcher, for use, e.g. in
re-find."
{:tag java.util.regex.Matcher
:added "1.0"}
[^java.util.regex.Pattern re s]
(. re (matcher s)))
Comments top
No comments for re-matcher. Log in to add a comment.