Find the end point of the second 'test'
import java.util.regex.Matcher; import java.util.regex.Pattern; public class Main { public static void main(String args[]) { String candidateString = "This is a test. This is another test."; Pattern p = Pattern.compile("test"); Matcher matcher = p.matcher(candidateString); matcher.find(); int nextIndex = matcher.end(); System.out.println(nextIndex); } }