Answers for "If the last character is a “/”, remove it"

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 "If the last character is a “/”, remove it"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language