how to cut a certion part from a string in java code example
Example 1: how to cut a certion part from a string in java
int startIndex = str.indexOf("(");
int endIndex = str.indexOf(")");
String replacement = "I AM JUST A REPLACEMENT";
String toBeReplaced = str.substring(startIndex + 1, endIndex);
System.out.println(str.replace(toBeReplaced, replacement));
Example 2: how to cut a certion part from a string in java
String str = "manchester united (with nice players)";
System.out.println(str.replace("(with nice players)", ""));
int index = str.indexOf("(");
System.out.println(str.substring(0, index));
Example 3: how to cut a certion part from a string in java
str2=str.substring(begin, [end])