charAt method

Characters charAt(
  1. int at
)

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);
}