Answers for "remove last character from string kotlin"

9

remove last character from string java

private static String removeLastChar(String str) {
    return str.substring(0, str.length() - 1);
}
Posted by: Guest on December-18-2019
0

remove last character from string kotlin

str1.dropLast(n)
Posted by: Guest on September-22-2021

Code answers related to "remove last character from string kotlin"

Browse Popular Code Answers by Language