//To delete starting from "opened"
String str ="13 opened by someone";
String result = str.substring(0,str.lastIndexOf(" opened"));
String str = "abcdDCBA123";
String strNew = str.replace("a", ""); // strNew is 'bcdDCBA123'
public class RemoveParticularCharacter
{
public static void main(String[] args)
{
String strInput = "Hello world java";
System.out.println(removeCharacter(strInput, 6));
}
public static String removeCharacter(String strRemove, int r)
{
return strRemove.substring(0, r) + strRemove.substring(r + 1);
}
}
// 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"