Extracts a portion of this CharArray as a string. @param start the start index, inclusive @return The new string @throws IndexOutOfBoundsException if the index is invalid
(int start)
| 1983 | * @return The new string |
| 1984 | * @throws IndexOutOfBoundsException if the index is invalid */ |
| 1985 | public String substring (int start) { |
| 1986 | return substring(start, size); |
| 1987 | } |
| 1988 | |
| 1989 | /** Extracts a portion of this CharArray as a string. |
| 1990 | * @param start the start index, inclusive |