
C# Sharp Basic Algorithm Exercises: Insert a given string into middle of the another given string of length 4
C# Sharp Basic Algorithm: Exercise-61 with Solution
Write a C# Sharp program to insert a given string into middle of the another given string of length 4.
Pictorial Presentation:

Sample Solution:-
C# Sharp Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace exercises
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(test("[[]]","Hello"));
Console.WriteLine(test("(())", "Hi"));
Console.ReadLine();
}
public static string test(string s1, string word)
{
return s1.Substring(0, 2) + word + s1.Substring(2);
}
}
}
Sample Output:
[[Hello]] ((Hi))
Flowchart:

C# Sharp Code Editor:
Improve this sample solution and post your code through Disqus
Previous: Write a C# Sharp program to create a new string using two given strings s1, s2, the format of the new string will be s1s2s2s1.
Next: create a new string using three copies of the last two character of a given string of length atleast two.
What is the difficulty level of this exercise?
New Content: Composer: Dependency manager for PHP, R Programming