Answers for "how to delete symbol from the end of the stirng groovy"

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 delete symbol from the end of the stirng groovy"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language