Matcher group with parameter : Matcher « Regular Expressions « Java






Matcher group with parameter

Matcher group with parameter
   

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

public class MatcherGroupParamExample {
  public static void main(String args[]) {
    Pattern p = Pattern.compile("B(ond)");

    String candidateString = "My name is Bond. James Bond.";

    Matcher matcher = p.matcher(candidateString);

    matcher.find();
    String group_0 = matcher.group(0);
    String group_1 = matcher.group(1);
    System.out.println("Group 0 " + group_0);
    System.out.println("Group 1 " + group_1);
    System.out.println(candidateString);

    matcher.find();
    group_0 = matcher.group(0);
    group_1 = matcher.group(1);
    System.out.println("Group 0 " + group_0);
    System.out.println("Group 1 " + group_1);
    System.out.println(candidateString);
  }

}



           
         
    
    
  








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 countMatcher group count
11.Matcher matchMatcher match
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