Languages
[Edit]
EN

Java - remove first 2 characters from string

0 points
Created by:
Warren-X
443

In this article, we would like to show you how to remove the first 2 characters from the string in Java.

Quick solution:

String text = "ABCD";

String result = text.substring(2);

System.out.println(result);  // CD

 

Practical examples

1. Using String substring() method

In this example, we use String substring() method to create a new result substring from the text string without the first 2 characters.

Syntax:

substring(int startIndex, int endIndex);

Note:

By default endIndex is the end of the string, so we don't need to specify it.

Practical example:

public class Example {

    public static void main(String[] args) {
        String text = "ABCD";

        String result = text.substring(2);

        System.out.println(result);  // CD
    }
}

Output:

CD

2. Using StringBuilder delete() method

In this example, we create sb StringBuilder object from the text string, then we use delete() method on the sb to delete the first 2 characters. 

Syntax:

delete(int startIndex, int endIndex);

Practical example:

public class Example {

    public static void main(String[] args) {
        String text = "ABCD";

        // Create StringBuilder object
        StringBuilder sb = new StringBuilder(text);

        // Remove first 2 characters
        sb.delete(0, 2);

        System.out.println(sb);
    }
}

Output:

CD

3. Using StringBuffer delete() method

In this example, we create sb StringBuffer object from the text string, then we use delete() method on the sb to delete the first 2 characters. 

Syntax:

delete(int startIndex, int endIndex);

Practical example:

public class Example {

    public static void main(String[] args) {
        String text = "ABCD";

        // Create StringBuffer object
        StringBuffer sb = new StringBuffer(text);

        // Remove first 2 characters
        sb.delete(0, 2);

        System.out.println(sb);
    }
}

Output:

CD
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 - remove first 2 characters from 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