Answers for "java string replace first and last character"

0

replace last char in string java

if (fieldName.endsWith(",")) {
    fieldName = fieldName.substring(0, fieldName.length() - 1) + " ";
}
Posted by: Guest on December-07-2020
0

remove first and last character from string in java

String roles = "[This is an example of list.toString()]";
//Below substring method will remove the first and last character of roles String
roles = roles.substring(1, roles.length()-1);
// here roles will become "This is an example of list.toString()"
System.out.println("New String: "+roles);
Posted by: Guest on October-23-2021
0

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) + "****";
}
Posted by: Guest on February-15-2022

Code answers related to "java string replace first and last character"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language