X Tutup
Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions src/clj/clojure/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -4414,9 +4414,9 @@
(cons (re-groups m) (lazy-seq (step))))))))

(defn re-matches
"Returns the match, if any, of string to pattern, using
java.util.regex.Matcher.matches(). Uses re-groups to return the
groups."
"Returns the match, if any, only if the entire string matches the
pattern, using java.util.regex.Matcher.matches(). Uses re-groups
to return the groups."
{:added "1.0"
:static true}
[^java.util.regex.Pattern re s]
Expand All @@ -4426,9 +4426,9 @@


(defn re-find
"Returns the next regex match, if any, of string to pattern, using
java.util.regex.Matcher.find(). Uses re-groups to return the
groups."
"Returns the first match, if any, of any part of the string that
matches the pattern, using java.util.regex.Matcher.find(). Uses
re-groups to return the groups."
{:added "1.0"
:static true}
([^java.util.regex.Matcher m]
Expand Down
X Tutup