string charat in java code example
Example 1: get certain character from string java
String words = "Hi There";
char index = words.charAt(0);
System.out.println(index);
Example 2: String charAt() method in java
public class StringCharAtMethodJava
{
public static void main(String[] args)
{
String strInput = "HelloWorldJava";
char ch1 = strInput.charAt(1);
char ch2 = strInput.charAt(6);
char ch3 = strInput.charAt(10);
System.out.println("Character at 1st index is: " + ch1);
System.out.println("Character at 6th index is: " + ch2);
System.out.println("Character at 10th index is: " + ch3);
}
}