Answers for "how to remove the end of a string"

1

python remove characters from end of string

foo = "test716"
foo = foo[:-3]
print(foo)
# output will be "test"
Posted by: Guest on August-19-2021
0

Delete end element in string java

public String method(String str) {
    if (str != null && str.length() > 0 && str.charAt(str.length() - 1) == 'x') {
        str = str.substring(0, str.length() - 1);
    }
    return str;
}
Posted by: Guest on November-03-2021

Code answers related to "how to remove the end of a string"

Python Answers by Framework

Browse Popular Code Answers by Language