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: Reverse the case of all characters of given string

C# Sharp String: Exercise-48 with Solution

Write a C# Sharp program to reverse the case (upper->lower, lower->upper) of all the characters of given string.

Sample Solution:-

C# Sharp Code:

using System;
using System.Linq;
namespace exercises
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Original string: PHP");
            Console.WriteLine("After reversing the case of all characters of the said string: " + test("PHP"));
            Console.WriteLine("\nOriginal string: JavaScript");
            Console.WriteLine("After reversing the case of all characters of the said string: " + test("JavaScript"));
            Console.WriteLine("\nOriginal string: Python 3.0");
            Console.WriteLine("After reversing the case of all characters of the said string: " + test("Python 3.0"));

        }
        public static string test(string text)
        {
            return string.Concat(text.Select(x => char.IsUpper(x) ? char.ToLower(x) : char.ToUpper(x)));
        }
    }
}

Sample Output:

Original string: PHP
After reversing the case of all characters of the said string: php

Original string: JavaScript
After reversing the case of all characters of the said string: jAVAsCRIPT

Original string: Python 3.0
After reversing the case of all characters of the said string: pYTHON 3.0

Flowchart :

Flowchart: C# Sharp Exercises - Reverse the case of all characters of given string.

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# Sharp program to find the length of the longest substring without repeating characters from a given string.
Next: 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.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.