//To delete starting from "opened"
String str ="13 opened by someone";
String result = str.substring(0,str.lastIndexOf(" opened"));
public String method(String str) {
if (str != null && str.length() > 0 && str.charAt(str.length() - 1) == 'x') {
str = str.substring(0, str.length() - 1);
}
return str;
}
// 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"