Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C# Sharp Basic Algorithm Exercises: Create a new string from a given string where a specified character have been removed except starting and ending position of the given string


C# Sharp Basic Algorithm: Exercise-36 with Solution

Write a C# Sharp program to create a new string from a given string where a specified character have been removed except starting and ending position of the given string.

Pictorial Presentation:

C# Sharp: Basic Algorithm Exercises - Create a new string from a give string where a specified character have been removed except starting and ending position of the given string.

Sample Solution:-

C# Sharp Code:

using System;
using System.Linq;

namespace exercises
{
   class Program
    {
       static void Main(string[] args)
        {
            Console.WriteLine(StringX("xxHxix", "x"));
            Console.WriteLine(StringX("abxdddca", "a"));
            Console.WriteLine(StringX("xabjbhtrb", "b"));
            Console.ReadLine();
        }

        public static string StringX(string str1, string c)
        {
              for (int i = str1.Length - 2; i > 0; i--)
            {
                if (str1[i] == c[0])
                {
                    str1 = str1.Remove(i, 1);
                }
            }

            return str1;
        }
    }
}

Sample Output:

xHix
abxdddca
xajhtrb

Flowchart:

C# Sharp: Flowchart: Create a new string from a give string where a specified character have been removed except starting and ending position of the given string.

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# Sharp program to comapre two given strings and return the number of the positions where they contain the same length 2 substring.
Next: Write a C# Sharp program to create a new string of the characters at indexes 0,1, 4,5, 8,9 ... from a given string.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.