excel remove first character 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());