Word Replacement Program in C#

This program is designed to replace all occurrences of a specific word in a text file and save the result into a new file. The user provides the original file, the word to search for, and the word to replace it with as parameters. The program processes the file, performs the word replacement, and outputs a new file with the suffix ".out" added to the original file name.



Group

File Handling in C#

Objective

1. The program will receive three parameters: the name of the file, the word to search for, and the word to replace it with.
2. It will read the contents of the input file, replacing all instances of the search word with the replacement word.
3. The modified content will be saved into a new file with the same name as the original file, but with ".out" appended to the file name.
4. The program must handle potential errors such as missing files or invalid parameters.

Create a program to replace words in a text file, saving the result into a new file.

Example C# Exercise

 Copy C# Code
using System;
using System.IO;

class WordReplacement
{
    // Main method: entry point of the program
    static void Main(string[] args)
    {
        // Check if the correct number of arguments is provided
        if (args.Length != 3)
        {
            Console.WriteLine("Usage: replace   ");
            return; // Exit if arguments are not correct
        }

        // Extract arguments: file name, word to search, and word to replace
        string fileName = args[0];
        string searchWord = args[1];
        string replaceWord = args[2];

        // Check if the file exists
        if (!File.Exists(fileName))
        {
            Console.WriteLine("Error: The file does not exist.");
            return; // Exit if the file is not found
        }

        try
        {
            // Read the content of the file
            string content = File.ReadAllText(fileName);
            
            // Replace the occurrences of the search word with the replacement word
            string modifiedContent = content.Replace(searchWord, replaceWord);

            // Create a new file name with ".out" appended
            string newFileName = fileName + ".out";

            // Write the modified content into the new file
            File.WriteAllText(newFileName, modifiedContent);

            Console.WriteLine($"Replacement complete. The modified file is saved as {newFileName}");
        }
        catch (Exception ex)
        {
            // Catch any errors during file reading or writing and display the message
            Console.WriteLine($"An error occurred: {ex.Message}");
        }
    }
}

 Output

Usage: replace <filename> <searchword> <replaceword>

If the input file 'file.txt' contains:
"hello world, hello again"

And you run the program with the command:
replace file.txt hello goodbye

The new file 'file.txt.out' will contain:
"goodbye world, goodbye again"

Share this C# Exercise

More C# Practice Exercises of File Handling in C#

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#.

  • Character Count Program from file in C#

    This program counts the number of times a specified character appears in a text file. The program can either ask the user for the file and the character to search or accept them as...

  • BMP Image File Validator in C#

    This program checks if a BMP image file seems to be correct by verifying its header. Specifically, it checks if the first two bytes of the file match the ASCII codes for the letter...

  • Store and Read Personal Data in a Binary File in C#

    This program asks the user for their name, age (as a byte), and birth year (as an int). The data is then stored in a binary file. The program will also include a reader to test tha...

  • Basic C# to Java Source Code Coverter

    This program is designed to translate a simple C# source file into an equivalent Java source file. It will take a C# file as input, and generate a Java file by making common langua...

  • Reverse the Contents of a Text File in C#

    This program takes a text file as input and creates a new file with the same name, but with a ".tnv" extension. The new file will contain the same lines as the original file, but i...

  • Check and Validate GIF Image File in C#

    This program checks if a GIF image file is correctly formatted by inspecting the first few bytes of the file. It reads the first four bytes to confirm if they match the ASCII codes...