Tutorials
Courses
Data Structure
Java
Python
HTML
Interview Preparation
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
SQL
Web Development
System Design
Aptitude
GfG Premium
Similar Topics
Web Technologies
37.4K+ articles
DSA
21.3K+ articles
Python
21.3K+ articles
Experiences
16.6K+ articles
Interview Experiences
14.2K+ articles
JavaScript
12.1K+ articles
School Learning
11.5K+ articles
Java
10.0K+ articles
Java-Functions
4.2K+ articles
Java - util package
1.6K+ articles
Java-Matcher
38 posts
Recent Articles
Popular Articles
Matcher appendReplacement(StringBuffer, String) method in Java with Examples
Last Updated: 27 November 2018
The appendReplacement(StringBuffer, String) method of Matcher Class behaves as a append-and-replace method. This method reads the input string and replace it with the matc...
read more
Java
Java - util package
Java-Functions
Java-Matcher
Matcher appendReplacement(StringBuilder, String) method in Java with Examples
Last Updated: 27 November 2018
The appendReplacement(StringBuilder, String) method of Matcher Class behaves as a append-and-replace method. This method reads the input string and replace it with the mat...
read more
Java
Java - util package
Java-Functions
Java-Matcher
Matcher appendTail(StringBuffer) method in Java with Examples
Last Updated: 27 November 2018
The appendTail(StringBuffer) method of Matcher Class behaves as a append-and-replace method. This method reads the input string and appends it to the given StringBuffer at...
read more
Java
Java - util package
Java-Functions
Java-Matcher
Matcher appendTail(StringBuilder) method in Java with Examples
Last Updated: 27 November 2018
The appendTail(StringBuilder) method of Matcher Class behaves as a append-and-replace method. This method reads the input string and appends it to the given StringBuilder ...
read more
Java
Java - util package
Java-Functions
Java-Matcher
Matcher region(int, int) method in Java with Examples
Last Updated: 30 November 2022
The region(int, int) method of Matcher Class restricts the region to be matched by the pattern. This region must be lesser than or same as the previous region, but not gre...
read more
Java
Java - util package
Java-Functions
Java-Matcher
Matcher regionStart() method in Java with Examples
Last Updated: 27 November 2018
The regionStart() method of Matcher Class is used to get the startIndex of the region to be matched by the pattern in the current matcher. This method returns an integer v...
read more
Java
Java - util package
Java-Functions
Java-Matcher
Matcher regionEnd() method in Java with Examples
Last Updated: 27 November 2018
The regionEnd() method of Matcher Class is used to get the endIndex of the region to be matched by the pattern in the current matcher. This method returns an integer value...
read more
Java
Java - util package
Java-Functions
Java-Matcher
Matcher hasTransparentBounds() method in Java with Examples
Last Updated: 27 November 2018
The hasTransparentBounds() method of Matcher Class is used to check if this matcher has transparent bounds or not. By transparent bounds, it means that the matcher will be...
read more
Java
Java - util package
Java-Functions
Java-Matcher
Matcher useTransparentBounds(boolean) method in Java with Examples
Last Updated: 27 November 2018
The useTransparentBounds(boolean) method of Matcher Class is used to set the transparent bounds of this matcher. By transparent bounds, it means that the matcher will be m...
read more
Java
Java - util package
Java-Functions
Java-Matcher
Matcher useAnchoringBounds(boolean) method in Java with Examples
Last Updated: 27 November 2018
The useAnchoringBounds(boolean) method of Matcher Class is used to set the anchoring bounds of this matcher. By anchoring bounds, it means that the matcher will be matched...
read more
Java
Java - util package
Java-Functions
Java-Matcher
Matcher hasAnchoringBounds() method in Java with Examples
Last Updated: 27 November 2018
The hasAnchoringBounds() method of Matcher Class is used to check if this matcher has anchoring bounds or not. By anchoring bounds, it means that the matcher will be match...
read more
Java
Java - util package
Java-Functions
Java-Matcher
Matcher hitEnd() method in Java with Examples
Last Updated: 27 November 2018
The hitEnd() method of Matcher Class is used to check if this the matching of the pattern on this matcher has stopped or not. The matching ends when no more matched group ...
read more
Java
Java - util package
Java-Functions
Java-Matcher
Matcher requireEnd() method in Java with Examples
Last Updated: 27 November 2018
The requireEnd() method of Matcher Class is used to check if any combination of anchors has caused the match to be bounded at the end. These anchors can be any anchor like...
read more
Java
Java - util package
Java-Functions
Java-Matcher
Matcher toString() method in Java with Examples
Last Updated: 27 November 2018
The toString() method of Matcher Class is used to get the String representation of this matcher. This method is derived from the Object Class and behaves in the similar wa...
read more
Java
Java - util package
Java-Functions
Java-Matcher
Matcher Class in Java
Last Updated: 16 February 2022
In Java, Matcher is a class that is implemented by the MatchResult interface, that performs match operations on a character sequence by interpreting a Pattern.Below, we ca...
read more
Java
Picked
Java-Matcher
Java-Classes
1
2
3
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our
Cookie Policy
&
Privacy Policy
Got It !