1String words = "Hi There"; //creating a string var named 'words'
2char index = words.charAt(0); /* setting a variable 'index' to letter
3'0' of variable 'words'. In this case, index = 'H'.*/
4System.out.println(index); //print var 'index' which will print "H"
1String str = "Grepper";
2char ch = str.charAt(0);
3//ch is assigned the value of G
1public class EsempioCharat {
2 public static void main(String args[]) {
3 String str = "informaticappunti.it";
4 //Estraiamo il primo carattere della stringa
5 char ch1 = str.charAt(0);
6
7 //Estraiamo il sesto carattere della stringa
8 char ch2 = str.charAt(5);
9
10 System.out.println("Il carattere all'indice 0 è: "+ch1);
11 System.out.println(" Il carattere all'indice 5 è: "+ch2);
12 }
13}