Courses
Tutorials
Interview Prep
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
Similar Topics
Web Technologies
32.1K+ articles
DSA
20.5K+ articles
Python
19.6K+ articles
Experiences
15.8K+ articles
Interview Experiences
14.5K+ articles
School Learning
11.1K+ articles
JavaScript
9.9K+ articles
Java
9.4K+ articles
Java-Functions
4.2K+ articles
Java - util package
1.6K+ articles
Java-MatchResult
7 posts
Recent Articles
MatchResult start(int) method in Java with Examples
Last Updated: 27 November 2018
The start(int group) method of MatchResult Interface is used to get the start index of the match result already done, from the specified group.Syntax:public int start(int ...
read more
Java
Java - util package
Java-Functions
Java-MatchResult
MatchResult start() method in Java with Examples
Last Updated: 27 November 2018
The start() method of MatchResult Interface is used to get the start index of the match result already done.Syntax:public int start()Parameters: This method do not takes a...
read more
Java
Java - util package
Java-Functions
Java-MatchResult
MatchResult end(int) method in Java with Examples
Last Updated: 27 November 2018
The end(int group) method of MatchResult Interface is used to get the offset after the end index of the match result already done, from the specified group.Syntax:public i...
read more
Java
Java - util package
Java-Functions
Java-MatchResult
MatchResult end() method in Java with Examples
Last Updated: 27 November 2018
The end() method of MatchResult Interface is used to get the offset after the last character matched of the match result already done.Syntax:public int end()Parameters: Th...
read more
Java
Java - util package
Java-Functions
Java-MatchResult
MatchResult group(int) method in Java with Examples
Last Updated: 27 November 2018
The group(int group) method of MatchResult Interface is used to get the group index of the match result already done, from the specified group.Syntax:public String group(i...
read more
Java
Java - util package
Java-Functions
Java-MatchResult
MatchResult group() method in Java with Examples
Last Updated: 18 October 2021
The group() method of MatchResult Interface is used to get the input subsequence matched by the previous match result.Syntax:public String group()Parameters: This method d...
read more
Java
Java - util package
Java-Functions
Java-MatchResult
MatchResult groupCount() method in Java with Examples
Last Updated: 06 July 2026
The groupCount() method of the MatchResult interface returns the number of capturing groups defined in a regular expression. It counts only the groups enclosed within pare...
read more
Java
Java - util package
Java-Functions
Java-MatchResult