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

Related Articles

Pattern asPredicate() Method in Java with Examples

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

asPredicate() method of a Pattern class used to creates a predicate object which can be used to match a string.Predicate is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference. 

Syntax:

public Predicate asPredicate()

Parameters: This method accepts nothing as parameter. 

Return value: This method returns a predicate which can be used for matching on a string. 

Below programs illustrate the asPredicate() method: 

Program 1: 

Java




// Java program to demonstrate
// Pattern.asPredicate() method
 
import java.util.regex.*;
import java.util.function.*;
 
public class GFG {
    public static void main(String[] args)
    {
        // create a REGEX String
        String REGEX = "ee";
 
        // create the string
        // in which you want to search
        String actualString
            = "aaeebbeecceeddee";
 
        // create a Pattern using REGEX
        Pattern pattern
            = Pattern.compile(REGEX);
 
        // get Predicate Object
        Predicate<String> predicate
            = pattern.asPredicate();
 
        // check whether predicate match
        // with actualString
        boolean value = predicate
                            .test(actualString);
 
        // print result
        System.out.println("value matched: "
                           + value);
    }
}

Output:

value matched: true

Program 2: 

Java




// Java program to demonstrate
// Pattern.asPredicate() method
 
import java.util.regex.*;
import java.util.function.*;
public class GFG {
    public static void main(String[] args)
    {
        // create a REGEX String
        String REGEX = "org";
 
        // create the string
        // in which you want to search
        String actualString
            = "welcome geeks";
 
        // create a Pattern using REGEX
        Pattern pattern
            = Pattern.compile(REGEX);
 
        // get Predicate Object
        Predicate<String> predicate
            = pattern.asPredicate();
 
        // check whether predicate match
        // with actualString
        boolean value
            = predicate.test(actualString);
 
        // print result
        System.out.println("value matched: "
                           + value);
    }
}

Output:

value matched: false

Reference: https://docs.oracle.com/javase/10/docs/api/java/util/regex/Pattern.html#asPredicate()


My Personal Notes arrow_drop_up
Last Updated : 12 Apr, 2023
Like Article
Save Article
Similar Reads
Related Tutorials