Matcher match : Matcher « Regular Expressions « Java






Matcher match

Matcher match
   

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class MatcherMatchesExample {
  public static void main(String args[]) {
    Pattern p = Pattern.compile("J2SE");

    String candidateString_1 = "j2se";
    String candidateString_2 = "J2SE ";
    String candidateString_3 = "J2SE2s";

    Matcher matcher_1 = p.matcher(candidateString_1);
    Matcher matcher_2 = p.matcher(candidateString_2);
    Matcher matcher_3 = p.matcher(candidateString_3);

    String msg = ":" + candidateString_1 + ": matches?: ";
    System.out.println(msg + matcher_1.matches());

    msg = ":" + candidateString_2 + ": matches?: ";
    System.out.println(msg + matcher_2.matches());

    msg = ":" + candidateString_3 + ": matches?: ";
    System.out.println(msg + matcher_3.matches());

  }
}

           
         
    
    
  








Related examples in the same category

1.Matcher: Find DemoMatcher: Find Demo
2.Matcher ResetMatcher Reset
3.Matcher PatternMatcher Pattern
4.Another Matcher resetAnother Matcher reset
5.Matcher startMatcher start
6.Matcher start with parameterMatcher start with parameter
7.Matcher endMatcher end
8.Matcher end with parameterMatcher end with parameter
9.Matcher groupMatcher group
10.Matcher group with parameterMatcher group with parameter
11.Matcher group countMatcher group count
12.Matcher findMatcher find
13.Matcher find with parameterMatcher find with parameter
14.Matcher LookingAtMatcher LookingAt
15.Matcher appendReplacementMatcher appendReplacement
16.Matcher replaceAllMatcher replaceAll
17.Matcher replaceFirstMatcher replaceFirst
18.Matcher group 2Matcher group 2
19.Matcher group with parameter 2Matcher group with parameter 2
20.Matcher ground countMatcher ground count
21.Matcher replaceAll 2Matcher replaceAll 2
22.Matcher find groupMatcher find group
23.Another Matcher find and groupAnother Matcher find and group
24.Pattern compilePattern compile
25.Show line ending matching using Regular Expressions classShow line ending matching using Regular Expressions class
26.Matcher Groups Matcher Groups
27.Matches Looking
28.Match Name Formats
29.Checks whether a string matches a given wildcard pattern
30.Replace all occurances of the target text with the provided replacement text
31.Check if a text is present at the current position in a buffer for string
32.This program tests regular expression matching