w3resource

C#: Create a new string using the two middle characters of a given string of even length


C# Sharp Basic Algorithm: Exercise-71 with Solution

Write a C# Sharp program to create a string using the two middle characters of a given string of even length (at least 2).

Visual Presentation:

C# Sharp: Basic Algorithm Exercises - Create a new string using the two middle characters of a given string of even length (at least 2).

Sample Solution:-

C# Sharp Code:

using System; // Import the System namespace which contains fundamental types and base classes

namespace exercises // Define a namespace called 'exercises'
{
    class Program // Define a class named 'Program'
    {
        static void Main(string[] args) // The entry point of the program
        {
            // Output the result of the test function with different strings as arguments
            Console.WriteLine(test("Hell")); // Test with the string "Hell"
            Console.WriteLine(test("JS"));   // Test with the string "JS"
            Console.ReadLine(); // Wait for user input before closing the console window
        }

        // Function definition of test function that takes a string 's1' and returns a string
        public static string test(string s1)
        {
            // Calculate the starting index for substring as the middle point minus one
            // and retrieve two characters from 's1' using Substring
            // The starting index is determined by dividing the length of 's1' by 2
            // and subtracting 1 to access the character before the middle in the string.
            // The method returns a substring of length 2 starting from that calculated index.
            return s1.Substring(s1.Length / 2 - 1, 2);
        }
    }
}

Sample Output:

el
JS

Flowchart:

C# Sharp: Flowchart: Create a new string using the two middle characters of a given string of even length (at least 2).

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 without the first and last character of a given string of any length.
Next: Write a C# Sharp program to check if a given string ends with "on".

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/csharp-exercises/basic-algo/csharp-basic-algorithm-exercises-71.php