Languages
[Edit]
EN

Java - get last character from string

0 points
Created by:
Nikki-Mathews
517

In this article, we would like to show you how to get the last character from a string in Java.

Quick solution: 

String text = "1234";
String lastCharacter = text.substring(text.length() - 1);

System.out.println(lastCharacter);  // 4

 

Practical example

The below example shows how to use substring() method to get the last character from the text string.

StringUtils.java file:

public class StringUtils {

    public static String getLastCharacters(String text, int charactersCount) {
        int length = text.length();
        int offset = Math.max(0, length - charactersCount);
        return text.substring(offset);
    }

    public static void main(String[] args) {

        System.out.println( getLastCharacters( "1234", 1) );  // 4
        System.out.println( getLastCharacters(  "123", 1) );  // 3
        System.out.println( getLastCharacters(   "12", 1) );  // 2
        System.out.println( getLastCharacters(    "1", 1) );  // 1
        System.out.println( getLastCharacters(     "", 1) );  //
    }
}

Output:

4
3
2
1
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Java - String (popular problems)

Java - get last character of string
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join