Languages
[Edit]
EN

Java - replace first 2 characters in string

0 points
Created by:
Vadim-Kotiv
414

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

Quick solution:

or:

or:

 

1. Practical example using String substring()

Edit

1.1 With + operator

Edit

In this example, we will take the last 2 characters from the original string and add them to the end of the replacement.

1.2 With concat() method

Edit

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

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

Edit

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

Regex explanation:

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

Note:

Regular expressions are slower than substring() method. 

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 - replace first 2 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