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 Exercises: Find the middle character(s) of a given string

C# Sharp String: Exercise-49 with Solution

Write a C# Sharp program to find the middle character(s) of a given string. Return the middle character if the length of the string is odd and return two middle characters if the length of the string is even.

Sample Solution:-

C# Sharp Code:

using System;
using System.Linq;
namespace exercises
{
    class Program
    {
        static void Main(string[] args)
        {
            string text = "Python"; 
            Console.WriteLine("Original string: " + text);
            Console.WriteLine("Middle character(s) of the said string: "+test(text));
            text = "PHP";
            Console.WriteLine("\nOriginal string: " + text);
            Console.WriteLine("Middle character(s) of the said string: " + test(text));
            text = "C#";
            Console.WriteLine("\nOriginal string: " + text);
            Console.WriteLine("Middle character(s) of the said string: " + test(text));
        }
        public static string test(string text)
        {
            int l = 1 - text.Length % 2;
            return text.Substring(text.Length / 2 - l, 1 + l);
        }
    }
}

Sample Output:

Original string: Python
Middle character(s) of the said string: th

Original string: PHP
Middle character(s) of the said string: H

Original string: C#
Middle character(s) of the said string: C#

Flowchart :

Flowchart: C# Sharp Exercises - Find the middle character(s) of a given string.

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# Sharp program to reverse the case (upper->lower, lower->upper) of all the characters of given string.
Next: Write a C# Sharp program to find the maximum and minimum number from a given string of numbers separated by single space.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.