Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Matcher requireEnd() method in Java with Examples

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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 a word anchor, for instance, or a lookahead. This method returns a boolean value stating the same.

Syntax:

public boolean requireEnd()

Parameters: This method takes no parameters.

Return Value: This method returns a boolean value stating whether if any combination of anchors has caused the match to be bounded at the end.

Below examples illustrate the Matcher.requireEnd() method:

Example 1:




// Java code to illustrate requireEnd() method
  
import java.util.regex.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Get the regex to be checked
        // with an anchor
        String regex = "Geeks$";
  
        // Create a pattern from regex
        Pattern pattern
            = Pattern.compile(regex);
  
        // Get the String to be matched
        String stringToBeMatched
            = "GFG GFG GEEKS Geeks";
  
        // Create a matcher for the input String
        Matcher matcher
            = pattern.matcher(stringToBeMatched);
  
        matcher.find();
  
        // Check if a match has been found
        // using requireEnd() method
        System.out.println("Has any anchor "
                           + "bounded the search: "
                           + matcher.requireEnd());
    }
}


Output:

Has any anchor bounded the search: true

Example 2:




// Java code to illustrate requireEnd() method
  
import java.util.regex.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Get the regex to be checked
        // without any anchor
        String regex = "Geeks";
  
        // Create a pattern from regex
        Pattern pattern
            = Pattern.compile(regex);
  
        // Get the String to be matched
        String stringToBeMatched
            = "GFG GFG GEEKS Geeks";
  
        // Create a matcher for the input String
        Matcher matcher
            = pattern.matcher(stringToBeMatched);
  
        matcher.find();
  
        // Check if a match has been found
        // using requireEnd() method
        System.out.println("Has any anchor "
                           + "bounded the search: "
                           + matcher.requireEnd());
    }
}


Output:

Has any anchor bounded the search: false

Reference: https://docs.oracle.com/javase/9/docs/api/java/util/regex/Matcher.html#requireEnd–


My Personal Notes arrow_drop_up
Last Updated : 27 Nov, 2018
Like Article
Save Article
Similar Reads
Related Tutorials