InterviewSolution
Saved Bookmarks
| 1. |
What does public int end(int group) return?(a) offset from last character of the subsequent group(b) offset from first character of the subsequent group(c) offset from last character matched(d) offset from first character matched |
|
Answer» Correct option is (a) offset from last character of the subsequent group To elaborate: public int end(int group) returns offset from the last character of the subsequent group. |
|