Open In App

Matcher region(int, int) method in Java with Examples

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

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 greater. Else it would lead to IndexOutOfBoundsException. This method returns a Matcher with the new matching region. Syntax:

public Matcher region(int startIndex, int endIndex)

Parameters: This method takes two parameters:

  • startIndex which is the starting index of the new constrained region.
  • endIndex which is the ending index of the new constrained region.

Return Value: This method returns a Matcher with the region, to be matched, constrained. Exception: This method throws IndexOutOfBoundsException if:

  • startIndex or endIndex is less than zero,
  • startIndex or endIndex is greater than the length of the input sequence,
  • startIndex is greater than endIndex.

Below examples illustrate the Matcher.region() method: Example 1: 

Java




// Java code to illustrate region() 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 Geeks Geek";
 
        // Create a matcher for the input String
        Matcher matcher
            = pattern.matcher(stringToBeMatched);
 
        System.out.println("Before changing region, "
                           + " Groups found are: ");
 
        while (matcher.find()) {
 
            // Get the group matched using group() method
            System.out.println(matcher.group());
        }
 
        System.out.println("\nAfter changing region, "
                           + " Groups found are: ");
 
        // Restrict the region to 0, 10
        // using region() method
        Matcher matcher1
            = matcher.region(0, 10);
 
        while (matcher1.find()) {
 
            // Get the group matched using group() method
            System.out.println(matcher1.group());
        }
    }
}


Output:

Before changing region,  Groups found are: 
Geeks
Geeks
Geeks
Geeks

After changing region,  Groups found are: 
Geeks

Example 2: 

Java




// Java code to illustrate region() method
 
import java.util.regex.*;
 
public class GFG {
    public static void main(String[] args)
    {
 
        // Get the regex to be checked
        String regex = "(FGF)";
 
        // Create a pattern from regex
        Pattern pattern
            = Pattern.compile(regex);
 
        // Get the String to be matched
        String stringToBeMatched
            = "FGF GFG GFG FGF";
 
        // Create a matcher for the input String
        Matcher matcher
            = pattern.matcher(stringToBeMatched);
 
        System.out.println("Before changing region, "
                           + " Groups found are: ");
 
        while (matcher.find()) {
 
            // Get the group matched using group() method
            System.out.println(matcher.group());
        }
 
        System.out.println("\nAfter changing region, "
                           + " Groups found are: ");
 
        // Restrict the region to 0, 5
        // using region() method
        Matcher matcher1 = matcher.region(0, 5);
 
        while (matcher1.find()) {
 
            // Get the group matched using group() method
            System.out.println(matcher1.group());
        }
    }
}


Output:

Before changing region,  Groups found are: 
FGF
FGF

After changing region,  Groups found are: 
FGF

Reference: https://docs.oracle.com/javase/9/docs/api/java/util/regex/Matcher.html#region-int-int-



Last Updated : 30 Nov, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads