how to remove the first charter in a string code example
Example: remove first character from string
String str = "Hello World";
String str2 = str.substring(1,str.length());
String str = "Hello World";
String str2 = str.substring(1,str.length());