remove last 2 characters from string code example
Example 1: js remove last character from string
let str = "Hello Worlds";
str = str.slice(0, -1);
Example 2: string remove last character
public static String removeLastCharacter(String str) {
String result = null;
if ((str != null) && (str.length() > 0)) {
result = str.substring(0, str.length() - 1);
}
return result;
}
Example 3: kotlin string remove last 3 digits
str.substring(0, str.length() - 2);
Example 4: remove last character string
let str = "Hello world"
let strWithoutLastChar = str.substring(0, str.length - 1)
Example 5: remove last character from string
public String method(String str) {
if (str.charAt(str.length()-1)=='x'){
str = str.replace(str.substring(str.length()-1), "");
return str;
} else{
return str;
}
}