I'm bit confused with java doc about Matcher in the definition of start() and end().
http://docs.oracle.com/javase/1.5.0/docs/api/java/util/regex/Matcher.html#start()
http://docs.oracle.com/javase/1.5.0/docs/api/java/util/regex/Matcher.html#end()
consider the following code
public static void test()
{
String candidate = "stackoverflow";
Pattern p = Pattern.compile("s");
Matcher m = p.matcher(candidate);
m.find();
int index = m.start();
out.println("Index from Match\t"+index);
int offset = m.end();
out.println("Offset from match\t"+offset);
}
The above will return the following result.
Index from Match 0
Offset from match 1
As I learned every char array or string will start by Index 0 and it's right in the above expression. But Offset also returns the same character 's' but why it starts with 1?
String.substring– Marko Topolnik May 6 '12 at 16:01