remove first letter from a string java code example
Example 1: remove first character from string
String str = "Hello World";
String str2 = str.substring(1,str.length());
Example 2: java remove first character
"Hello World".substring(1) // ello World