Wednesday, July 3, 2024
HomeLanguagesJavaMatcher regionEnd() method in Java with Examples

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());
    }
}


Output:

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());
    }
}


Output:

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–

Nokonwaba Nkukhwana
Experience as a skilled Java developer and proven expertise in using tools and technical developments to drive improvements throughout a entire software development life cycle. I have extensive industry and full life cycle experience in a java based environment, along with exceptional analytical, design and problem solving capabilities combined with excellent communication skills and ability to work alongside teams to define and refine new functionality. Currently working in springboot projects(microservices). Considering the fact that change is good, I am always keen to new challenges and growth to sharpen my skills.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments