VOOZH about

URL: https://www.geeksforgeeks.org/java/matcher-lookingat-method-in-java-with-examples/

⇱ Matcher lookingAt() method in Java with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Matcher lookingAt() method in Java with Examples

Last Updated : 26 Nov, 2018
The lookingAt() method of Matcher Class attempts to match the pattern partially or fully in the matcher. It returns a boolean value showing if the pattern was matched even partially or fully starting from the start of the pattern. Syntax:
public boolean lookingAt()
Parameters: This method do not takes any parameter. Return Value: This method returns a boolean value showing if a prefix of the input sequence matches this matcher's pattern. Below examples illustrate the Matcher.lookingAt() method: Example 1:
Output:
true
Example 2:
Comment