charAt method
Returns the single-character sequence of the positionth character.
The position must be non-negative and less than length.
Implementation
Characters charAt(int at) {
return text.characterAt(at);
}
Returns the single-character sequence of the positionth character.
The position must be non-negative and less than length.
Characters charAt(int at) {
return text.characterAt(at);
}