string slice last character code example
Example 1: remove last character from string javascript
const text = 'abcdef'
const editedText = text.slice(0, -1) //'abcde'
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: remove last character string
let str = "Hello world"
let strWithoutLastChar = str.substring(0, str.length - 1)