Answers for "how to cut substring from string in java"

1

delete ending part of the string java

//To delete starting from "opened"
String str ="13 opened by someone";

String result = str.substring(0,str.lastIndexOf(" opened"));
Posted by: Guest on January-19-2021
0

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));
Posted by: Guest on June-24-2020
0

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));
Posted by: Guest on June-24-2020
0

how to cut a certion part from a string in java

str2=str.substring(begin, [end])
Posted by: Guest on June-24-2020
0

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"
Posted by: Guest on March-11-2020

Code answers related to "how to cut substring from string in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language