charat in string code example
Example 1: character at index of string java
String str = "Grepper";
char ch = str.charAt(0);
//ch is assigned the value of G
Example 2: string charAt
charAt(index)
String str = "Grepper";
char ch = str.charAt(0);
//ch is assigned the value of G
charAt(index)