Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

1 Answer
Fendadis John

The find() method finds the subsequence in an input sequence that matches the pattern required. This method is available in the Matcher class that is available in the java.util.regex package

A program that uses the find() method to find a subsequence in Java is given as follows:

Example

 Live Demo

import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Demo {
   public static void main(String args[]) {
      Pattern p = Pattern.compile("cool");
      Matcher m = p.matcher("Java is cool");
      System.out.println("Subsequence: cool");
      System.out.println("Sequence: Java is cool");
      if (m.find())
         System.out.println("\nSubsequence found");
      else
         System.out.println("\nSubsequence not found");
   }
}

Output

Subsequence: cool
Sequence: Java is cool
Subsequence found

Now let us understand the above program.

The subsequence “cool” is searched in the string sequence "Java is cool". Then the find() method is used to find if the subsequence is in the input sequence and the required result is printed. A code snippet which demonstrates this is as follows:

Pattern p = Pattern.compile("cool");
Matcher m = p.matcher("Java is cool");
System.out.println("Subsequence: cool" );
System.out.println("Sequence: Java is cool" );
if (m.find())
   System.out.println("\nSubsequence found");
else
   System.out.println("\nSubsequence not found");

Advertisements

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.