remove a part from string java code example
Example 1: delete ending part of the string java
String str ="13 opened by someone";
String result = str.substring(0,str.lastIndexOf(" opened"));
Example 2: java string remove character
String str = "abcdDCBA123";
String strNew = str.replace("a", "");
Example 3: java remove string from character
String str = "abcdDCBA123";
String strNew = str.replace("a", "");
Example 4: remove part of string java
String text = "Image.png";
String[] cutText = text.split("\\.");