Replace string : String Insert Replace : String C# Examples


C# Examples » String » String Insert Replace »

 

Replace string









    
using  System;    
    
class  MainClass  {    
    public  static  void  Main()  {    
        string  str  =  "This  test";  
  
        Console.WriteLine("Original  string:  "  +  str);  
          
        //  Replace  string  
        str  =  str.Replace("is",  "was");  
        Console.WriteLine(str);  
  
    }  
}
    
   
  
   



Output

Original string: This test
Thwas test


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo String
» String Insert Replace