You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
402 B
C#

/*
* C# Program to Replace a Character with the String
*/
using System;
class Program
{
static void Main(string[] args)
{
string s = "".PadLeft(5, 'X').Replace("X", "Sanfoundry");;
Console.Write("The String After the Replacement :{0}",s);
Console.Read();
}
}
/*
The String After the Replacement :SanfoundrySanfoundrySanfoundrySanfoundrySanfoundry