java remove first character from string code example

Example 1: 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

Example 2: javascript remove last character from string

var str = "Hello";
var newString = str.substring(0, str.length - 1); //newString = Hell

Example 3: remove last character from string java

private static String removeLastChar(String str) {
    return str.substring(0, str.length() - 1);
}

Example 4: remove first character from string

String str = "Hello World";
String str2 = str.substring(1,str.length());

Example 5: java remove first character

"Hello World".substring(1)  // ello World

Example 6: how to remove first letter of a string

s = "hello"
print s[1:]

Tags:

Dart Example