In the example, we are going to show you how to implement the replaceFirst() method in Java application.
Generally, replaceFirst() method in Java used to replace the first substring, matching the given regular expression with the given replacement.
A simple example of replaceFirst() method.
public class example {
public static void main(String args[]) {
String xx = "test";
xx = xx.replaceFirst("t","z");
System.out.println(xx);
}
}
the Output is:
zest
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: java.lang.String.replaceFirst
Post your Comment