Table of Contents

replace

public String replace(CharSequence target, CharSequence replacement)

description of replace

this method is used to replace a char Sequence

example of replace in java

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 );
 
 
    }
}

output of replace example in java

  String after replacement :Hxxlo