remove first character from string

Java
String str = "Hello World";
String str2 = str.substring(1,str.length());
Source

Also in Java: