between method
Returns a substring between the specified start and end positions.
Implementation
Characters between(int start, int end) {
return text.getRange(start, end);
}
Returns a substring between the specified start and end positions.
Characters between(int start, int end) {
return text.getRange(start, end);
}