Answers for "how to remove the last word in the string in persl"

6

remove last character from string

let str = "12345.00";
str = str.substring(0, str.length - 1);
Posted by: Guest on September-02-2020
5

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;
}
Posted by: Guest on March-30-2020

Code answers related to "how to remove the last word in the string in persl"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language