regex
please elaborate on the rationale behind the "matcher.matches()" part like why does that work in this context


5 Replies
⌛
This post has been reserved for your question.
Hey @SidKid! Please useTIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here./close
or theClose Post
button above when your problem is solved. Please remember to follow the help guidelines. This post will be automatically marked as dormant after 300 minutes of inactivity.
.matcher(String) makes a new Matcher object for the given string, which defines some functions to apply the regex to the string. this includes finding the pattern in the string and scrolling through every occurance (.next and related methods), or checking if the pattern matches the entire string (.matches)
so for every string, you're creating a Matcher, and checking if the Matcher says that the pattern matches the entire string
you might also want to check https://dev.java/learn/regex/
Dev.java: The Destination for Java Developers
Regular Expressions - Dev.java
Provides a general overview of regular expressions. It also introduces the core classes that comprise this API.
specifically https://dev.java/learn/regex/matchers/
Dev.java: The Destination for Java Developers
The Matcher Class - Dev.java
Describes the commonly-used methods of the Matcher class.
💤
Post marked as dormant
This post has been inactive for over 300 minutes, thus, it has been archived.
If your question was not answered yet, feel free to re-open this post or create a new one.
In case your post is not getting any attention, you can try to use /help ping
.
Warning: abusing this will result in moderative actions taken against you.