remove frist few character from string java code example
Example 1: remove first character from string
String str = "Hello World";
String str2 = str.substring(1,str.length());
Example 2: remove part of string java
// Works only if you have a certain character at which you want to cut
String text = "Image.png";
String[] cutText = text.split("\\.");
// cutText[0] has value "Image"
// cutText[1] has value "png"