Matcher regionEnd() method in Java with Examples
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 which is the endIndex of the region of this matcher.
Syntax:
public int regionEnd()
Parameters: This method takes no parameters.
Return Value: This method returns a integer value which is the endIndex of the region of this matcher.
Below examples illustrate the Matcher.regionEnd() method:
Example 1:
// Java code to illustrate regionEnd() method import java.util.regex.*; public class GFG { public static void main(String[] args) { // Get the regex to be checked String regex = "(Geeks)" ; // Create a pattern from regex Pattern pattern = Pattern.compile(regex); // Get the String to be matched String stringToBeMatched = "GeeksForGeeks Geeks for For Geeks Geek" ; // Create a matcher for the input String Matcher matcher = pattern.matcher(stringToBeMatched); // Get previous endIndex of region // using regionEnd() method System.out.println( "Before changing region, " + " Region ends from: " + matcher.regionEnd()); // Restrict the region to 0, 10 matcher = matcher.region( 0 , 10 ); // Get previous endIndex of region // using regionEnd() method System.out.println( "After changing region, " + " Region ends from: " + matcher.regionEnd()); } } |
Before changing region, Region ends from: 38 After changing region, Region ends from: 10
Example 2:
// Java code to illustrate regionEnd() method import java.util.regex.*; public class GFG { public static void main(String[] args) { // Get the regex to be checked String regex = "(F*F)" ; // Create a pattern from regex Pattern pattern = Pattern.compile(regex); // Get the String to be matched String stringToBeMatched = "GFGFGFGFGFGFGFGFGFG FGF GFG GFG FGF" ; // Create a matcher for the input String Matcher matcher = pattern.matcher(stringToBeMatched); // Get previous endIndex of region // using regionEnd() method System.out.println( "Before changing region, " + " Region ends from: " + matcher.regionEnd()); // Restrict the region to 0, 5 matcher = matcher.region( 0 , 5 ); // Get previous endIndex of region // using regionEnd() method System.out.println( "After changing region, " + " Region ends from: " + matcher.regionEnd()); } } |
Before changing region, Region ends from: 35 After changing region, Region ends from: 5
Reference: https://docs.oracle.com/javase/9/docs/api/java/util/regex/Matcher.html#regionEnd–
Recommended Posts:
- Matcher end() method in Java with Examples
- Matcher end(int) method in Java with Examples
- Matcher find() method in Java with Examples
- Matcher matches() method in Java with Examples
- Matcher toMatchResult() method in Java with Examples
- Matcher lookingAt() method in Java with Examples
- Matcher groupCount() method in Java with Examples
- Matcher find(int) method in Java with Examples
- Matcher hasTransparentBounds() method in Java with Examples
- Matcher region(int, int) method in Java with Examples
- Matcher group(int) method in Java with Examples
- Matcher toString() method in Java with Examples
- Matcher requireEnd() method in Java with Examples
- Matcher hitEnd() method in Java with Examples
- Matcher hasAnchoringBounds() method in Java with Examples
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.