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 command-line parameters. The program reads the content of the file, counts the occurrences of the specified character, and displays the result on the screen. This can be helpful for tasks such as analyzing files for specific characters or conducting simple text processing.



Group

File Handling in C#

Objective

1. The program can accept the file name and the character to search for as parameters or ask the user to input them.
2. It will read the contents of the specified file.
3. The program will count how many times the specified character appears in the file.
4. The result (the count of the character) will be displayed on the screen.

Create a program to count the amount of times that a certain character is inside a file (of any kind).

Example C# Exercise

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

class CharacterCounter
{
    // Main method: entry point of the program
    static void Main(string[] args)
    {
        // Check if the correct number of arguments is provided
        if (args.Length == 2)
        {
            // Extract arguments: file name and character to count
            string fileName = args[0];
            char searchChar = args[1][0];  // Take the first character of the second argument

            // Call method to count the occurrences of the character in the file
            int count = CountCharacterInFile(fileName, searchChar);

            // Display the result
            Console.WriteLine($"The character '{searchChar}' appears {count} times in the file {fileName}.");
        }
        else
        {
            // If arguments are not passed, prompt user for input
            Console.WriteLine("Please enter the file name:");
            string fileName = Console.ReadLine();

            Console.WriteLine("Please enter the character to search for:");
            char searchChar = Console.ReadLine()[0]; // Read first character entered by the user

            // Call method to count the occurrences of the character in the file
            int count = CountCharacterInFile(fileName, searchChar);

            // Display the result
            Console.WriteLine($"The character '{searchChar}' appears {count} times in the file {fileName}.");
        }
    }

    // Method to count the occurrences of a character in a file
    static int CountCharacterInFile(string fileName, char searchChar)
    {
        // Initialize the count to 0
        int count = 0;

        try
        {
            // Read all the contents of the file
            string content = File.ReadAllText(fileName);

            // Loop through each character in the content and check if it matches the search character
            foreach (char c in content)
            {
                if (c == searchChar)
                {
                    count++;  // Increment count if a match is found
                }
            }
        }
        catch (Exception ex)
        {
            // Handle errors if the file is not found or other issues arise
            Console.WriteLine($"Error: {ex.Message}");
            return 0;  // Return 0 in case of an error
        }

        // Return the total count
        return count;
    }
}

 Output

//Output Example:
Please enter the file name:
example.txt
Please enter the character to search for:
a
The character 'a' appears 5 times in the file example.txt.

//Alternatively, when run with parameters:
count example.txt a
The character 'a' appears 5 times in the file example.txt.

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

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

  • Persist Data in Friends Database in C#

    This program expands the "friends database" by adding functionality to load and save data from and to a file. The program will check for an existing file when the application start...