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: Replace lowercase characters by uppercase and vice-versa

C# Sharp String: Exercise-15 with Solution

Write a program in C# Sharp to read a sentence and replace lowercase characters by uppercase and vice-versa.

C# Sharp Exercises: Replace lowercase characters by uppercase and vice-versa.

Sample Solution:-

C# Sharp Code:

using System;
public class exercise15
{
	public static void Main()
	{
	    string str1;
        char[] arr1;
        int l,i;
        l=0;
        char ch;
        Console.Write("\n\nReplace lowercase characters by uppercase and vice-versa :\n");
        Console.Write("--------------------------------------------------------------\n");	
       Console.Write("Input the string : ");
       str1 = Console.ReadLine();
       l=str1.Length;
       arr1 = str1.ToCharArray(0, l); // Converts string into char array.

        Console.Write("\nAfter conversion, the string is : ");
        for(i=0; i < l; i++)
         {
          ch=arr1[i];
           if (Char.IsLower(ch)) // check whether the character is lowercase
              Console.Write(Char.ToUpper(ch)); // Converts lowercase character to uppercase.
              else
              Console.Write(Char.ToLower(ch)); // Converts uppercase character to lowercase.
        }
    Console.Write("\n\n");    
   }
}

Sample Output:

Replace lowercase characters by uppercase and vice-versa :                                                    
--------------------------------------------------------------                                                
Input the string : w3RESOURCE                                                                                 
                                                                                                              
After conversion, the string is : W3resource 

Flowchart:

Flowchart: Replace lowercase characters by uppercase and vice-versa.

C# Sharp Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a C# Sharp program to check whether a given substring is present in the given string
Next: Write a program in C# Sharp to check the username and password.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.