File Text to HTML Converter in C#

This program is a "Text to HTML Converter" that reads the contents of a source text file and converts it into an HTML file. The program will take the text file and process its contents to generate an HTML file with the same name but with the ".html" extension. The HTML file will include a "head" section with a title based on the name of the source file (without the ".txt" extension). The body of the HTML document will contain the contents of the text file, with each line wrapped in a <p> (paragraph) tag. This program is useful for converting plain text documents into a basic HTML format.



Group

File Handling in C#

Objective

1. The program will prompt the user for the name of the text file to be converted.
2. The program will read the contents of the text file.
3. It will generate an HTML file with the same name as the text file but with a ".html" extension.
4. The content of the text file will be placed within the of the HTML file, with each line wrapped in a

tag.
5. The "title" of the HTML file will be set to the name of the text file (without the ".txt" extension).
6. If the file is not found or there is an error, appropriate messages will be shown.

Create a "Text to HTML converter", which will read a source text file and create an HTML file from its contents. For example, if the file contains:

Hola
Soy yo
Ya he terminado

The name of the destination file must be the same as the source file, but with ".html" extension (which will replace the original ".txt" extension, if it exists). The "title" in the "head" must be taken from the file name.

Example C# Exercise

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

class TextToHtmlConverter
{
    // Main method to run the program
    static void Main(string[] args)
    {
        // Ask the user to enter the name of the text file
        Console.WriteLine("Please enter the name of the text file:");

        // Read the name of the text file from the user input
        string fileName = Console.ReadLine();

        try
        {
            // Check if the file has a ".txt" extension
            if (!fileName.EndsWith(".txt"))
            {
                Console.WriteLine("Error: The file must have a .txt extension.");
                return;
            }

            // Open the text file for reading
            string[] lines = File.ReadAllLines(fileName);

            // Create the output HTML file with the same name, but with a ".html" extension
            string htmlFileName = Path.ChangeExtension(fileName, ".html");

            // Open the HTML file for writing
            using (StreamWriter writer = new StreamWriter(htmlFileName))
            {
                // Write the opening HTML tags and the title based on the file name (without ".txt")
                writer.WriteLine("");
                writer.WriteLine("");
                writer.WriteLine($"{Path.GetFileNameWithoutExtension(fileName)}");
                writer.WriteLine("");
                writer.WriteLine("");

                // Write each line from the text file as a paragraph in the HTML file
                foreach (string line in lines)
                {
                    writer.WriteLine($"

{line}

"); } // Close the body and HTML tags writer.WriteLine(""); writer.WriteLine(""); } // Inform the user that the HTML file has been created Console.WriteLine($"HTML file '{htmlFileName}' has been created successfully."); } catch (FileNotFoundException) { // Handle file not found error Console.WriteLine("Error: The specified text file could not be found."); } catch (Exception ex) { // Handle other unexpected errors Console.WriteLine("An error occurred: " + ex.Message); } } }

 Output

//If the user enters example.txt and the file contains the following lines:
Hola
Soy yo
Ya he terminado

//The program will create a file named example.html with the following content:
<html>
<head>
<title>example</title>
</head>
<body>
<p>Hola</p>
<p>Soy yo</p>
<p>Ya he terminado</p>
</body>
</html>

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 Inverter Using FileStream in C#

    This program takes a file and creates a new file where the bytes are inverted. The program reads the contents of the original file using a FileStream, then writes these contents to...

  • Display Width and Height of a BMP File Using FileStream in C#

    This program reads the header of a BMP (Bitmap) file and extracts the width and height of the image using FileStream. It uses the structure of the BMP header, where the width and h...

  • Copy Source File to Destination File Using FileStream in C#

    This program copies a source file to a destination file using FileStream in C#. The file is read and written in blocks of 512 KB at a time to handle large files efficiently. The pr...

  • Tag Reader for Audio Files in C#

    This program reads and extracts the ID3 version 1 tags from an audio file, specifically the last 128 bytes of the file, which contain metadata information such as the title, artist...

  • Simple C to C# Converter

    This program is designed to convert simple C programs into C# code. It takes a C program as input and translates it into a corresponding C# program that compiles and runs correctly...

  • File Splitter Program in C#

    This program allows you to split a file of any type into smaller pieces of a specified size. The program takes two parameters: the name of the file to split and the size (in bytes)...