Languages
[Edit]
EN

Java - get first 3 characters of string

0 points
Created by:
Yusef-Ewing
389

In this article, we would like to show you how to get the first 3 characters from a string in Java.

Quick solution: 

String text = "1234";
String firstCharacters = text.substring(0, 3);

System.out.println( firstCharacters );  // 123

 

Practical example

The below example shows how to use substring() method to get the first 3 characters from the text string.

public class StringUtils {

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

    public static void main(String[] args) {

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

Output: 

123
123
12
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.

Cross technology - get first 3 characters 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