0
to length() - 1
. The first character of the sequence is at index 0
, the next at index 1
, and so on, as for array indexing.
@param index the index of the character.
@return the character at the specified index of this string.The first character is at index 0
.
@exception IndexOutOfBoundsException if the index
argument is negative or not less than the length of this string.
|
|
|
|