Tuesday, November 24, 2015

C# STRING REPLACE CONCEPT

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication17
{
    class Program
    {
        static void Main(string[] args)
        {
            String input = "Google is good company";
            Console.WriteLine("Input Value = " + input);
            String output = input.Replace("good", "better");
            Console.WriteLine("After reaplce = " + output);
            Console.ReadKey();
        }
    }
}




No comments:

Post a Comment

15 August vs 26th January

 ध्वजारोहण (Flag Hoisting) और झंडातोलन/ध्वजोत्तोलन (Flag Unfurling) दोनों में अर्थ, परंपरा और प्रक्रिया का अंतर होता है। ध्वजारोहण 15 अगस्त ...