Matcher start(String) method in Java with Examples Last Updated : 26 Nov, 2018 Comments Improve Suggest changes Like Article Like Report The start(String string) method of Matcher Class is used to get the start index of the match result already done, from the specified string. Syntax: public int start(String string) Parameters: This method takes a parameter string which is the String from which the start index of the matched pattern is required. Return Value: This method returns the index of the first character matched from the specified string. Exception: This method throws: IllegalStateException if no match has yet been attempted, or if the previous match operation failed. IndexOutOfBoundsException if there is no capturing group in the pattern with the given name. Below examples illustrate the Matcher.start() method: Example 1: Java // Java code to illustrate start() method import java.util.regex.*; public class GFG { public static void main(String[] args) { // Get the regex to be checked String regex = "\\b(?<Geeks>[A-Za-z\\s]+)"; // Create a pattern from regex Pattern pattern = Pattern.compile(regex); // Get the String to be matched String stringToBeMatched = "GeeksForGeeks"; // Create a matcher for the input String Matcher matcher = pattern .matcher(stringToBeMatched); // Get the current matcher state MatchResult result = matcher.toMatchResult(); System.out.println("Current Matcher: " + result); while (matcher.find()) { // Get the first index of match result System.out.println(matcher.start("Geeks")); } } } Output: Current Matcher: java.util.regex.Matcher[pattern=\b(?[A-Za-z\s]+) region=0,13 lastmatch=] 0 Example 2: Java // Java code to illustrate start() method import java.util.regex.*; public class GFG { public static void main(String[] args) { // Get the regex to be checked String regex = "\\b(?<GFG>[A-Za-z\\s]+)"; // Create a pattern from regex Pattern pattern = Pattern.compile(regex); // Get the String to be matched String stringToBeMatched = " GFGFGFGFGFGFGFGFGFG"; // Create a matcher for the input String Matcher matcher = pattern .matcher(stringToBeMatched); // Get the current matcher state MatchResult result = matcher.toMatchResult(); System.out.println("Current Matcher: " + result); while (matcher.find()) { // Get the first index of match result System.out.println(matcher.start("GFG")); } } } Output: Current Matcher: java.util.regex.Matcher[pattern=\b(?[A-Za-z\s]+) region=0,22 lastmatch=] 3 Reference: Oracle Doc Comment More infoAdvertise with us Next Article Matcher start(String) method in Java with Examples K Kirti_Mangal Follow Improve Article Tags : Java Java - util package Java-Functions Java-Matcher Practice Tags : Java Similar Reads Matcher toString() method in Java with Examples The toString() method of Matcher Class is used to get the String representation of this matcher. This method is derived from the Object Class and behaves in the similar way. Syntax: public String toString() Parameters: This method takes no parameters. Return Value: This method returns a String value 2 min read Matcher start() method in Java with Examples The start() method of Matcher Class is used to get the start index of the match result already done. Syntax: public int start() Parameters: This method do not takes any parameter. Return Value: This method returns the index of the first character matched.0 Exception: This method throws IllegalStateE 2 min read String matches() Method in Java with Examples In Java, the matches() method in the String class checks if a string matches a specified regular expression. It is useful for validating input patterns and searching within strings. In this article, we will learn how to use the matches() method effectively in Java with examples to illustrate its fun 3 min read Matcher replaceFirst(String) Method in Java with Examples The replaceFirst() method of Matcher Class behaves as an append-and-replace method. This method reads the input string and replaces it with the first matched pattern in the matcher string. Syntax: public String replaceFirst(String stringToBeReplaced) Parameters: The string to be replaced that is the 2 min read Matcher start(int) method in Java with Examples The start(int group) method of Matcher Class is used to get the start index of the match result already done, from the specified group. Syntax: public int start(int group) Parameters: This method takes a parameter group which is the group from which the start index of the matched pattern is required 2 min read Matcher reset() Method in Java with Examples The reset() method of Matcher Class is used to reset this matcher, in order to understand it better it is recommended to have prior knowledge of Pattern and Matcher class in java regex sub-package. Here we will be illustrating it with help of Java programs. Syntax: public Matcher reset() Parameters: 2 min read Matcher group(String) method in Java with Examples The group(String string) method of Matcher Class is used to get the group of the match result already done, from the specified string. Syntax: public String group(String string) Parameters: This method takes a parameter string which is the String from which the group index of the matched pattern is 2 min read Matcher regionStart() method in Java with Examples The regionStart() method of Matcher Class is used to get the startIndex of the region to be matched by the pattern in the current matcher. This method returns an integer value which is the startIndex of the region of this matcher. Syntax: public int regionStart() Parameters: This method takes no par 2 min read Matcher replaceAll(String) method in Java with Examples The replaceAll(String) method of Matcher Class behaves as a append-and-replace method. This method reads the input string and replace it with the matched pattern in the matcher string. Syntax: public String replaceAll(String stringToBeReplaced) Parameters: This method takes a parameter stringToBeRep 2 min read Like