Convert Text to HTML and Dump to File in C#

This program implements a class TextToHtml that can convert several user-entered lines of text into an HTML sequence. The program will have methods to add text to an array, display the text in HTML format, and save the result to a text file. The ToFile method will use a StreamWriter to write the HTML content to a specified file. This program allows the user to enter multiple lines of text and then saves it in an HTML format to a file.



Group

File Handling in C#

Objective

1. Create a class TextToHtml to store and manage text data.
2. Implement a method Add to add text to an internal array.
3. Implement a Display method to show the stored text in HTML format.
4. Implement a method ToFile to save the HTML-formatted text to a specified file using StreamWriter.
5. Ensure that the text is properly written in HTML format.

Create a program to expand the TextToHtml class, so that it can dump its result to a text file. Create a method ToFile, which will receive the name of the file as a parameter.

Example C# Exercise

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

class TextToHtml
{
    // Array to store entered lines of text
    private string[] texts = new string[10];
    private int count = 0;

    // Method to add a new string to the array
    public void Add(string text)
    {
        if (count < texts.Length)
        {
            texts[count] = text;
            count++; // Increment the counter after adding text
        }
    }

    // Method to display the texts in HTML format
    public void Display()
    {
        Console.WriteLine("");
        Console.WriteLine("");
        foreach (var text in texts)
        {
            if (text != null)
            {
                Console.WriteLine("

" + text + "

"); } } Console.WriteLine(""); Console.WriteLine(""); } // Method to save the HTML content to a file public void ToFile(string fileName) { // Use StreamWriter to write the content to a file try { using (StreamWriter writer = new StreamWriter(fileName)) { writer.WriteLine(""); writer.WriteLine(""); foreach (var text in texts) { if (text != null) { writer.WriteLine("

" + text + "

"); } } writer.WriteLine(""); writer.WriteLine(""); } Console.WriteLine("HTML content has been saved to " + fileName); } catch (Exception ex) { Console.WriteLine("Error writing to file: " + ex.Message); } } } class Program { static void Main() { // Create an instance of the TextToHtml class TextToHtml textToHtml = new TextToHtml(); // Adding some text textToHtml.Add("Hello, World!"); textToHtml.Add("This is a test."); textToHtml.Add("Here is another line."); // Display the content as HTML textToHtml.Display(); // Save the HTML content to a file textToHtml.ToFile("sentences.html"); } }

 Output

<html>
<body>
<p>Hello, World!</p>
<p>This is a test.</p>
<p>Here is another line.</p>
</body>
</html>
HTML content has been saved to sentences.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#.

  • Logger Class to Append Text with Date and Time in C#

    This program creates a Logger class with a static method Write. The Write method appends a specified text message to a log file, including the current date and time before the mess...

  • Simulating Unix 'More' Command in C#

    Create a C# program that mimics the functionality of the Unix command more, which allows the user to view content from a text file one screen at a time. The program will display 24...

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

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