User Tools

Site Tools


Sidebar

Programming Reference/Librarys

Question & Answer

Q&A is closed







java:lang:string:replace

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

on the occasion of the current invasion of Russia in Ukraine

Russian Stop this War
java/lang/string/replace.txt · Last modified: 2024/02/16 01:12 (external edit)

Impressum Datenschutz