cut string at last / code example

Example 1: remove last character string

let str = "Hello world"
let strWithoutLastChar = str.substring(0, str.length - 1)

Example 2: remove last character from string

let str = "12345.00";
str = str.substring(0, str.length - 1);

Example 3: 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;
    }
}

Tags:

Cpp Example