Languages
[Edit]
EN

Java - replace first 3 characters in string

3 points
Created by:
Jax
388

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

Quick solution:

String text = "ABCD";
String replacement = "xyz";
String result = replacement + text.substring(3);

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

or:

String text = "ABCD";
String replacement = "xyz";
String result = replacement.concat(text.substring(3));

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

or:

String text = "ABCD";
String replacement = "xyz";
String result = text.replaceAll("^.{3}", replacement);

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

 

1. Practical example using String substring()

1.1 With + operator

In this example, we remove last 3 characters from the original string and add the replacement at the beginning.

public class Example {

    public static void main(String[] args) {
        String text = "ABCD";
        String replacement = "xyz";
        String result = replacement + text.substring(3);

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

1.2 With concat() method

This approach is equivalent to the above one. Instead of + operator we concatenate the strings using concat() method.

public class Example {

    public static void main(String[] args) {
        String text = "ABCD";
        String replacement = "xyz";
        String result = replacement.concat(text.substring(3));

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

2. Practical example using String replaceAll() with regex pattern

In this example, we use string replaceAll() with "^.{3}" regex to replace the first 3 characters in the text string.

Regex explanation:

  • ^ - matches the beginning of the string,
  • . - matches any character except linebreaks,
  • {3} - matches the specified quantity of the previous token (in our case the .).
public class Example {

    public static void main(String[] args) {
        String text = "ABCD";
        String replacement = "xyz";
        String result = text.replaceAll("^.{3}", replacement);

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

Note:

Regular expressions are slower than substring() method. 

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 - replace first 3 characters in 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