Answers for "how to remove the first two characters in a string java"

5

java remove first character from string

String string = "Hello World";

//Remove first character
string.substring(1); //ello World

//Remove last character
string.substring(0, string.length()-1); //Hello Worl

//Remove first and last character
string.substring(1, string.length()-1); //ello Worl
Posted by: Guest on June-25-2020
0

how to remove all characters before a certain character from a string in java

String s = "the text=text";
String s1 = s.substring(s.indexOf("=")+1);
s1.trim();
Posted by: Guest on April-05-2021

Code answers related to "how to remove the first two characters in a string java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language