CSV to Text Converter in C#

This program reads a CSV file that contains four data blocks per line. The first three data blocks are textual (name, surname, and city), and the last one is numeric (age). It processes the CSV file and generates a new text file where each data block appears on a separate line. The program handles the CSV format where data blocks are enclosed in quotation marks and separated by commas, but it is also adaptable to variants where quotes are not used. For each line in the CSV file, the program splits the data and writes it to the output text file with each entry on a new line.



Group

File Handling in C#

Objective

1. The program expects a CSV file with four values per line: name, surname, city, and age.
2. Each data block should be enclosed in quotes, and the values should be separated by commas.
3. The output will be a new text file with each data block from the CSV file written on a new line.
4. Run the program by passing the input CSV file name as a parameter.

Example usage:

csvToText input.csv


The CSV ("Comma Separated Values") is an exchange format used by many spreadsheet and database management systems. It consists of a series of comma-separated values enclosed in quotation marks, although there are variants that do not use quotes or use semicolons as separators. Often, the values are not enclosed in quotes. An example file would be:

"John", "López Pérez," "Alicante", 25

"Antonio", "Pérez López", "Madrid", 27


You should create a program that reads a CSV file as shown above, with four data blocks (the first three are text and the last one is numeric), each of which is on a separate line. The program should generate a text file where each entry contains a line like this:

John

Pérez López
Alicante
25
Antonio
Pérez López
Madrid
27

Example C# Exercise

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

class CSVToTextConverter
{
    // Main method where the program starts execution
    static void Main(string[] args)
    {
        // Check if the user has provided the necessary file name argument
        if (args.Length != 1)
        {
            Console.WriteLine("Usage: csvToText ");
            return;
        }

        // Get the input CSV file name from the command line arguments
        string inputFileName = args[0];
        
        // Check if the specified file exists
        if (!File.Exists(inputFileName))
        {
            Console.WriteLine("The specified file does not exist.");
            return;
        }

        // Define the output file name by changing the extension to .txt
        string outputFileName = Path.ChangeExtension(inputFileName, ".txt");

        try
        {
            // Open the input CSV file for reading
            using (StreamReader reader = new StreamReader(inputFileName))
            {
                // Open the output text file for writing
                using (StreamWriter writer = new StreamWriter(outputFileName))
                {
                    string line;
                    // Read each line from the CSV file
                    while ((line = reader.ReadLine()) != null)
                    {
                        // Split the CSV line by commas, assuming values are enclosed in quotes
                        string[] data = line.Split(new char[] { ',' }, StringSplitOptions.None);

                        // Loop through the data array and write each value to the output file
                        foreach (var value in data)
                        {
                            // Remove quotes around values if present
                            string cleanValue = value.Trim('"').Trim();

                            // Write the cleaned value to the output file on a new line
                            writer.WriteLine(cleanValue);
                        }
                    }
                }
            }

            // Inform the user that the file has been successfully created
            Console.WriteLine($"Text file created successfully: {outputFileName}");
        }
        catch (Exception ex)
        {
            // Handle any errors that occur during file reading or writing
            Console.WriteLine("An error occurred: " + ex.Message);
        }
    }
}

 Output

//For an input CSV file named input.csv with the following content:
"John", "López Pérez", "Alicante", 25
"Antonio", "Pérez López", "Madrid", 27

//The output text file (input.txt) will contain:
John
López Pérez
Alicante
25
Antonio
Pérez López
Madrid
27

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

  • File Comparison Program in C#

    This C# program compares two files of any type (text, binary, etc.) to determine if they are identical. The program reads the content of both files and checks whether every byte in...

  • Netpbm Image Decoder in C#

    This C# program decodes a Netpbm image file (specifically the "P1" type) and displays the image content in the console. The program reads the header, dimensions, and pixel data fro...

  • PCX Image File Checker in C#

    This C# program checks if a given file is a valid PCX image file. If the file is a PCX image, the program reads the file's header to extract the width and height of the image. The ...

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

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