Returns the character at the specified index, with the first character having index zero. @param index the index of the character to return. @return the requested character. @throws IndexOutOfBoundsException if index < 0 or index is greater than the
(int index)
| 43 | * length of this sequence. |
| 44 | */ |
| 45 | public char charAt(int index); |
| 46 | |
| 47 | /** |
| 48 | * Returns a {@code CharSequence} from the {@code start} index (inclusive) |
no outgoing calls