Saturday 2 December 2017

C# Program to Replace String in String


Code:

using System;
class Program
{
    static void Main()
    {
        const string s = "Sun Rises in the West";
        Console.WriteLine("Sentence Before Replacing : {0} ",s);
        string s1 = s.Replace("West", "East");
        Console.WriteLine("Sentence After Replacing : {0} ",s1);
        Console.ReadLine();
    }
}


Output:

Sentence Before Replacing : Sun Rises in the West
Sentence After Replacing : Sun Rises in the East


More C# Programs:





















100+ Best Home Decoration Ideas For Christmas Day 2019 To Make Home Beautiful

Best gifts for Christmas Day | Greeting cards for Christmas Day | Gift your children a new gift on Christmas day This Christmas d...