User Tools

Site Tools


java:lang:string:replace

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

java:lang:string:replace [2024/02/16 01:12] (current)
Line 1: Line 1:
 +====== replace ======
 +<code java>
 +public String replace(CharSequence target, CharSequence replacement)
 +</code>
  
 +===== description of replace =====
 +this method is used to replace a char Sequence
 +
 +==== example of replace in java ====
 +<code 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 );
 +    
 +    
 +    }
 +}
 +
 +</code>
 +
 +=== 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