regex

please elaborate on the rationale behind the "matcher.matches()" part like why does that work in this context
No description
No description
5 Replies
JavaBot
JavaBot3w ago
This post has been reserved for your question.
Hey @SidKid! Please use /close or the Close 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.
TIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here.
0x150
0x1502w ago
.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
dan1st
dan1st2w ago
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.
dan1st
dan1st2w ago
Dev.java: The Destination for Java Developers
The Matcher Class - Dev.java
Describes the commonly-used methods of the Matcher class.
JavaBot
JavaBot2w ago
💤 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.

Did you find this page helpful?