Answers for "hoe remove the end of a string java"

28

java remove last character from string

String s = "Hello Worlds";
String end = "";
end = s.substring((0, s.length()-1));
Posted by: Guest on October-19-2020
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

Code answers related to "hoe remove the end of a string java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language