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 endIndex = matcher.end();
System.out.println(candidateString);
System.out.println( endIndex);