Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

java string replace last 4 characters

public static String replaceLastFour(String s) {
    int length = s.length();
    //Check whether or not the string contains at least four characters; if not, this method is useless
    if (length < 4) return "Error: The provided string is not greater than four characters long.";
    return s.substring(0, length - 4) + "****";
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #java #string #replace #characters
ADD COMMENT
Topic
Name
6+8 =