vote up 3 vote down star
2

Is there an easy way to take a string of html in JavaScript and strip out the html?

flag

7 Answers

vote up 12 vote down check

If you're running in a browser, then the easiest way is just to let the browser do it for you...

function strip(html)
{
   var tmp = document.createElement("DIV");
   tmp.innerHTML = html;
   return tmp.textContent||tmp.innerText;
}
link|flag
+1 good answer! – nickf May 4 at 22:50
nice one! – knittl Sep 14 at 13:32
2  
Just remember that this approach is rather inconsistent and will fail to strip certain characters in certain browsers. For example, in Prototype.js, we use this approach for performance, but work around some of the deficiencies - github.com/kangax/prototype/… – kangax Sep 14 at 16:08
2  
Remember your whitespace will be messed about. I used to use this method, and then had problems as certain product codes contained double spaces, which ended up as single spaces after I got the innerText back from the DIV. Then the product codes did not match up later in the application. – Magnus Smith Sep 17 at 15:03
@Magnus Smith: Yes, if whitespace is a concern - or really, if you have any need for this text that doesn't directly involve the specific HTML DOM you're working with - then you're better off using one of the other solutions given here. The primary advantages of this method are that it is 1) trivial, and 2) will reliably process tags, whitespace, entities, comments, etc. in the same way as the browser you're running in. That's frequently useful for web client code, but not necessarily appropriate for interacting with other systems where the rules are different. – Shog9 Sep 17 at 21:05
show 1 more comment
vote up 0 vote down

I built this JavaScript library for a Konfabulator widget that does exactly that. It completely strips out comments and <style> and <script> tags and tries to be somewhat smart about converting <br/>'s and <p/>'s into newlines as well.

http://github.com/mtrimpe/jsHtmlToText

link|flag
vote up 1 vote down

Converting HTML for Plain Text emailing keeping hyperlinks (a href) intact

The above function posted by hypoxide works fine, but I was after something that would basically convert HTML created in a Web RichText editor (for example FCKEditor) and clear out all HTML but leave all the Links due the fact that I wanted both the HTML and the plain text version to aid creating the correct parts to an STMP email (both HTML and plain text).

After a long time of searching Google myself and my collegues came up with this using the regex engine in Javascript:-

str='this string has <i>html</i> code i want to <b>remove</b><br>Link Number 1 -><a href="http://www.bbc.co.uk">BBC</a> Link Number 1<br><p>Now back to normal text and stuff</p>
';
str=str.replace(/<br>/gi, "\n");
str=str.replace(/<p.*>/gi, "\n");
str=str.replace(/<a.*href="(.*?)".*>(.*?)<\/a>/gi, " $2 (Link->$1) ");
str=str.replace(/<(?:.|\s)*?>/g, "");

the str var starts out like this:-

this string has <i>html</i> code i want to <b>remove</b><br>Link Number 1 -><a href="http://www.bbc.co.uk">BBC</a> Link Number 1<br><p>Now back to normal text and stuff</p>

which renders like this:-

--start--

this string has html code i want to remove
Link Number 1 ->BBC Link Number 1

Now back to normal text and stuff

--end--

and then after the code has run it looks like this:-

this string has html code i want to remove
Link Number 1 -> BBC (Link->http://www.bbc.co.uk)  Link Number 1


Now back to normal text and stuff

As you can see the all the HTML has been removed and the Link have been persevered with the hyperlinked text is still intact. Also I have replaced the

and
tags with \n (newline char) so that some sort of visual formatting has been retained.

To change the link format (eg. "BBC (Link->http://www.bbc.co.uk)" ) just edit the " $2 (Link->$1) ", where $1 is the href URL/URI and the $2 is the hyperlinked text. With the links directly in body of the plain text most SMTP Mail Clients convert these so the user has the ability to click on them.

Hope you find this useful.

link|flag
vote up 0 vote down

Check out the ticked answer to this:

http://stackoverflow.com/questions/795512/how-might-one-go-about-implementing-a-forward-index-in-php

link|flag
this is javascript though. – nickf May 4 at 23:23
vote up 2 vote down

Another, admittedly less elegant solution than nickf's or Shog9's, would be to recursively walk the DOM starting at the <body> tag and append each text node.

var bodyContent = document.getElementsByTagName('body')[0];
var result = appendTextNodes(bodyContent);

function appendTextNodes(element) {
    var text = '';

    // Loop through the childNodes of the passed in element
    for (var i = 0, len = element.childNodes.length; i < len; i++) {
    	// Get a reference to the current child
    	var node = element.childNodes[i];
    	// Append the node's value if it's a text node
    	if (node.nodeType == 3) {
    		text += node.nodeValue;
    	}
    	// Recurse through the node's children, if there are any
    	if (node.childNodes.length > 0) {
    		appendTextNodes(node);
    	}
    }
    // Return the final result
    return text;
}
link|flag
yikes. if you're going to create a DOM tree out of your string, then just use shog's way! – nickf May 4 at 23:21
Yes, my solution wields a sledge-hammer where a regular hammer is more appropriate :-). And I agree that yours and Shog9's solutions are better, and basically said as much in the answer. I also failed to reflect in my response that the html is already contained in a string, rendering my answer essentially useless as regards the original question anyway. :-( – Bryan May 5 at 0:08
To be fair, this has value - if you absolutely must preserve /all/ of the text, then this has at least a decent shot at capturing newlines, tabs, carriage returns, etc... Then again, nickf's solution should do the same, and do much faster... eh. – Shog9 May 5 at 4:58
vote up 5 vote down
myString.replace(/<.*?>/g, '');
link|flag
vote up -1 vote down
function stripHtml(s) {
    return s.replace(/\\&/g, '&amp;').replace(/\\</g, '&lt;').replace(/\\>/g, '&gt;').replace(/\\t/g, '&nbsp;&nbsp;&nbsp;').replace(/\\n/g, '<br />');
}
link|flag
I think you're doing the opposite of what was asked. – Laurence Gonsalves May 4 at 22:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.