Paul Taylor
0
Q:

charat java

String str = "Grepper";
char ch = str.charAt(0);
//ch is assigned the value of G
10
String words = "Hi There"; //creating a string var named 'words'
char index = words.charAt(0); /* setting a variable 'index' to letter
'0' of variable 'words'. In this case, index = 'H'.*/
System.out.println(index); //print var 'index' which will print "H"
10
The charAt() method returns the character at the specified index in a string.
The index of the first character is 0, the second character is 1, and so on.
String myStr = "Hello";
char result = myStr.charAt(0);
System.out.println(result);
2
char ch=name.charAt(4);
2

New to Communities?

Join the community