Java String charAt
The java string charAt() method returns a char value at the given index number. The index number starts from 0.
Signature
The signature of string charAt() method is given below:
Parameter
index : index number, starts with 0
Returns
char value
Specified by
CharSequence interface
Throws
IndexOutOfBoundsException : if index is negative value or greater than this string length.
Java String charAt() method example
output
t
No comments:
Post a Comment