Programming Reference/Librarys
Question & Answer
Q&A is closed
this method is used to replace a char Sequence
package replace; public class ReplaceString { public static void main(String[] args) { String str = "Hello"; str = str.replace("el", "xx"); System.out.println("String after replacement :"+ str ); } }
String after replacement :Hxxlo