String Manipulation in C# 'Replace, Display Initials, and Modify Case'

This C# program performs several operations on a string input by the user. First, it replaces all lowercase "a"s by uppercase "A"s, unless they are preceded by a space. Then, it extracts and displays the initials of the string (first letter and those after a space). Finally, it modifies the string so that odd-indexed characters are uppercase and even-indexed characters are lowercase. The program will display each of these manipulated strings, allowing users to visualize the transformations.



Group

C# Arrays, Structures and Strings

Objective

1. Ask the user for a string input.
2. Replace all lowercase "a"s with uppercase "A"s, unless they are preceded by a space.
3. Extract and display the initials of the string (first letter and those after each space).
4. Modify the string such that characters at odd indices are uppercase, and those at even indices are lowercase.
5. Display each of the generated strings.

Write a C# program that asks the user for a string and:

- Replace all lowercase A by uppercase A, except if they are preceded by a space.
- Display the initials (first letter and those after a space).
- Display odd letters uppercase and even letters lowercase

Example C# Exercise

 Copy C# Code
using System;

class StringManipulation
{
    static void Main()
    {
        // Ask the user for input string
        Console.Write("Enter a string: ");
        string input = Console.ReadLine();
        
        // Replace lowercase 'a' with uppercase 'A' except if preceded by a space
        string replacedString = ReplaceLowercaseA(input);
        Console.WriteLine("Replaced String: " + replacedString);
        
        // Display initials (first letter and those after a space)
        string initials = GetInitials(input);
        Console.WriteLine("Initials: " + initials);
        
        // Display odd letters uppercase and even letters lowercase
        string modifiedString = ModifyCase(input);
        Console.WriteLine("Modified String (odd uppercase, even lowercase): " + modifiedString);
    }

    // Method to replace lowercase 'a' by uppercase 'A' unless preceded by a space
    static string ReplaceLowercaseA(string input)
    {
        char[] characters = input.ToCharArray();
        for (int i = 1; i < characters.Length; i++)
        {
            if (characters[i] == 'a' && characters[i - 1] != ' ')
            {
                characters[i] = 'A';
            }
        }
        return new string(characters);
    }

    // Method to get initials (first letter and those after a space)
    static string GetInitials(string input)
    {
        string[] words = input.Split(' ');
        string initials = "";
        
        foreach (var word in words)
        {
            if (word.Length > 0)
            {
                initials += word[0];
            }
        }
        
        return initials;
    }

    // Method to display odd letters uppercase and even letters lowercase
    static string ModifyCase(string input)
    {
        char[] characters = input.ToCharArray();
        
        for (int i = 0; i < characters.Length; i++)
        {
            if (i % 2 == 0)
            {
                characters[i] = Char.ToLower(characters[i]);
            }
            else
            {
                characters[i] = Char.ToUpper(characters[i]);
            }
        }
        
        return new string(characters);
    }
}

 Output

Enter a string: banana apple orange
Replaced String: bAnAnA apple orange
Initials: bao
Modified String (odd uppercase, even lowercase): bAnAnA ApPlE OrAnGe

Share this C# Exercise

More C# Practice Exercises of C# Arrays, Structures and Strings

Explore our set of C# Practice Exercises! Specifically designed for beginners, these exercises will help you develop a solid understanding of the basics of C#. From variables and data types to control structures and simple functions, each exercise is crafted to challenge you incrementally as you build confidence in coding in C#.

  • C# Structs for Storing Personal Information

    This C# program demonstrates the use of structs to store personal information. The first struct stores the name and date of birth of a person, where the date of birth is represente...

  • Sorting 10 Integer Numbers in C#

    This C# program asks the user to input 10 integer numbers, each ranging from -1000 to 1000. After collecting all the numbers, the program sorts them in ascending order and then dis...

  • Randomly Placing Characters in a 2D Array in C#

    This C# program declares a 70x20 two-dimensional array of characters and randomly places 80 "X" characters in various positions within the array. After the random placement, it dis...

  • Drawing a Circumference in a 2D Array in C#

    In this C# program, we declare a 70x20 two-dimensional array of characters and "draw" a circumference with a radius of 8 inside it. The program calculates the points that make up t...

  • Managing Computer Program Records in C#

    In this C# program, we will create a system to store and manage up to 1000 records of computer programs. Each program will have the following attributes: Name, Category, Descriptio...

  • Managing To-Do Tasks in C#

    This C# program helps to manage a list of to-do tasks by storing up to 2000 tasks. For each task, the program keeps track of the date (day, month, year), a description of the task,...