how to get first few characters of a string in java code example
Example 1: get first 5 characters of string java
firstFourChars = input.substring(0, 4);
Example 2: character at index of string java
String str = "Grepper";
char ch = str.charAt(0);
//ch is assigned the value of G