Extract Alphabetic Characters from Binary File in C#

This C# program extracts only the alphabetic characters from a binary file and dumps them into a separate file. The program identifies characters with ASCII codes between 32 and 127, as well as line feed (ASCII 10) and carriage return (ASCII 13). It opens the binary file, reads its content byte by byte, and filters out the non-alphabetic characters. The filtered characters are then written to a new output file. This can be useful for extracting readable text from a binary file while ignoring non-printable characters.



Group

File Handling in C#

Objective

1. The program reads a binary file byte by byte.
2. It filters out characters whose ASCII codes are not between 32 and 127, or not equal to 10 or 13.
3. The extracted alphabetic characters are written to a new text file.
4. The program handles errors such as missing input files or issues with file writing.

Example usage:

extractAlphaChars inputFile.bin outputFile.txt


Create a program that extracts only the alphabetic characters contained in a binary file and dumps them to a separate file. The extracted characters should be those whose ASCII code is between 32 and 127, or equal to 10 or 13.

Example C# Exercise

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

class AlphabeticExtractor
{
    // Main method where the program starts execution
    static void Main(string[] args)
    {
        // Check if the user provided the input and output filenames as command line arguments
        if (args.Length != 2)
        {
            Console.WriteLine("Usage: extractAlphaChars  ");
            return;
        }

        // Get the input and output file paths from the command line arguments
        string inputFile = args[0];
        string outputFile = args[1];

        try
        {
            // Open the input binary file for reading
            using (FileStream input = new FileStream(inputFile, FileMode.Open, FileAccess.Read))
            {
                // Open the output text file for writing
                using (StreamWriter output = new StreamWriter(outputFile))
                {
                    // Read the file byte by byte
                    int byteRead;
                    while ((byteRead = input.ReadByte()) != -1)
                    {
                        // Check if the byte is a printable character or line feed/carriage return
                        if ((byteRead >= 32 && byteRead <= 127) || byteRead == 10 || byteRead == 13)
                        {
                            // Write the printable character to the output file
                            output.Write((char)byteRead);
                        }
                    }
                }
            }

            Console.WriteLine("Alphabetic characters have been extracted to " + outputFile);
        }
        catch (Exception ex)
        {
            // If there was an error, display the error message
            Console.WriteLine($"Error: {ex.Message}");
        }
    }
}

 Output

//Case 1 - Successful Extraction:

//For the command:
extractAlphaChars inputFile.bin outputFile.txt

//Output:
Alphabetic characters have been extracted to outputFile.txt

//Case 2 - Error (File Not Found):

//For the command:
extractAlphaChars nonExistentFile.bin outputFile.txt

//Output:
Error: The system cannot find the file specified.

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

  • Convert C# Program to Pascal

    This C# program is designed to convert simple C# programs into Pascal language code. The program reads a C# source code file and translates basic constructs like if, for, while, va...

  • Hex Viewer Utility - Dump Utility in C#

    This C# program is a "dump" utility that functions as a hex viewer. It displays the contents of a given file in hexadecimal format, with 16 bytes in each row and 24 rows in each sc...

  • Display Fields in a DBF File in C#

    In this exercise, you will create a program that reads a DBF file and displays a list of fields contained within it. The DBF file format, used by the old dBase database manager, is...

  • Censor Text File Program in C#

    In this exercise, you will create a program that reads a text file, checks each word against a list of words to censor, and writes the modified text to a new file. The words to cen...

  • Extract Data from SQL INSERT Statements in C#

    In this exercise, you will create a C# program that parses SQL INSERT commands from a file and extracts their data in a structured format. The program will read SQL INSERT statemen...

  • PGM Image Parser and Console Display in C#

    This program reads a PGM image file in binary format (P5) and represents its shades of gray in the console using different characters based on the intensity value. The program firs...