How do i convert html content to plain text?

I was working with a rich text editor the other day and needed to strip the HTML tags from the string and store it in the database. And here are the few ways I learned that could come in handy to anyone who is trying to do the same.
What we are trying to do is remove the tags from the string and make the string printable as plain text. Let’s dive in and see how it works.

1] Using .replace[/]*>/g, ‘’]

This method is a simple and efficient way to remove the tags from the text. This method uses the string method .replace[old value,new value] which replaces the HTML tag values with the empty string. The /g is used for it to happen globally [every value found in the string is replaced with the specified if the /g is used].
The drawback of this method is that we can’t remove some HTML entities. It still works well though.

var myHTML= "

Jimbo.

\n

That's what she said

"; var strippedHtml = myHTML.replace[/]+>/g, '']; // Jimbo. // That's what she said console.log[stripedHtml];

Enter fullscreen mode Exit fullscreen mode

2] Create a temporary DOM element and retrieve the text

This is the most efficient way of doing the task. Create a dummy element and assign it to a variable. We can extract later using the element objects. Assign the HTML text to innerHTML of the dummy element and we will get the plain text from the text element objects.

function convertToPlain[html]{

    // Create a new div element
    var tempDivElement = document.createElement["div"];

    // Set the HTML content with the given value
    tempDivElement.innerHTML = html;

    // Retrieve the text property of the element 
    return tempDivElement.textContent || tempDivElement.innerText || "";
}

var htmlString= "

Bears Beets Battlestar Galactica

\n

Quote by Dwight Schrute

"; console.log[convertToPlain[htmlString]]; // Expected Result: // Bears Beets Battlestar Galactica // Quote by Dwight Schrute

Enter fullscreen mode Exit fullscreen mode

3] html-to-text npm package

This is the package I discovered recently. This is the converter that parses HTML and returns beautiful text. It comes with many options to convert it to plain text like wordwrap, tags, whitespaceCharacters , formattersetc.
Package.json is needed to use the package. We need to install the package first and then use it in our file.
You can find the official doc of the package here.

Installation

npm install html-to-text

Enter fullscreen mode Exit fullscreen mode

Usage

const { htmlToText } = require['html-to-text'];

const text = htmlToText['
Nope Its not Ashton Kutcher. It is Kevin Malone.

Equally Smart and equally handsome

', { wordwrap: 130 }]; console.log[text]; // expected result: // Nope Its not Ashton Kutcher. It is Kevin Malone. // Equally Smart and equally handsome

Enter fullscreen mode Exit fullscreen mode

Find the example of the project here.

And that sums it up. Thank you!!

How do I convert HTML to normal text?

Convert HTML file to a text file [preserving HTML code and text]..
Click the File tab again, then click the Save as option..
In the Save as type drop-down list, select the Plain Text [*. txt] option. ... .
Click the Save button to save as a text document..

How do I display HTML as plain text?

HTML Tag The tag tells the browser, that its content must be displayed as an ordinary text without formatting.

How do I convert to plaintext?

1. Open TextEdit and then open the document in TextEdit by clicking on Open in the File menu. 2. Click on Format, then Make Plain Text.

How do I convert HTML to word?

From the Insert tab, Text section, choose Object..
Then choose Text From File..
Use the file type selector in the Insert File dialog box, choose All Web Pages to locate the HTML file..
A Convert File box will be displayed, choose Other encoding,.
click OK..

Chủ Đề