Has the same result as the substring function, but is present so that string may implement the CharSequence interface. @param start the offset the first character. @param end the offset of one past the last character to include. @return the subsequence requested. @throws Index
(int start, int end)
| 1835 | * @since 1.4 |
| 1836 | */ |
| 1837 | public CharSequence subSequence(int start, int end) { |
| 1838 | return substring(start, end); |
| 1839 | } |
| 1840 | |
| 1841 | /** |
| 1842 | * Retrieves the Unicode code point (character) value at the specified |