Answers for "given a string, take the last char and return a new string with the last char added at the front and back, so "cat" yields "tcatt". the original string will be length 1 or more. in java"

12

java get last char of string

public class Test {
    public static void main(String args[]) {
        String string = args[0];
        System.out.println("last character: " +
                           string.substring(string.length() - 1)); 
    }
}
Posted by: Guest on February-24-2020

Code answers related to "given a string, take the last char and return a new string with the last char added at the front and back, so "cat" yields "tcatt". the original string will be length 1 or more. in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language