Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to remove all the html tags out of a string in Javascript. Heres what I have... I can't figure out why its not working....any know what I am doing wrong?

<script type="text/javascript">

var regex = "/<(.|\n)*?>/";
var body = "<p>test</p>";
var result = body.replace(regex, "");
alert(result);

</script>

Thanks a lot!

share|improve this question

6 Answers

up vote 23 down vote accepted

Try this, noting that the grammar of HTML is too complex for regular expressions to be correct 100% of the time:

var regex = /(<([^>]+)>)/ig;
var body = "<p>test</p>";
var result = body.replace(regex, "");
alert(result);

If you're willing to use a library such as jQuery, you could simply do this:

alert($('<p>test</p>').text());
share|improve this answer
1  
AWESOME, I didnt think about the jQuery option. That is way preferred! Thanks so much! – Gabe Sep 30 '09 at 18:40
Why are you wrapping the regex in a string? var regex = /(<([^>]+)>)/ig; – brianary Sep 30 '09 at 18:42
1  
@brianary - because I'm an idiot. Corrected. – karim79 Sep 30 '09 at 18:45
This won't work. Specifically, it will fail on short tags: is-thought.co.uk/book/sgml-9.htm#SHORTTAG – Mike Samuel Oct 1 '09 at 0:04
This is an old question but I'll just post this here: jsperf.com/regex-replace-vs-jquery-text – Joshua May 8 at 16:21

This is an old question, but I stumbled across it and thought I'd share the method I used:

var body = '<div id="anid">some <a href="link">text</a></div> and some more text';
var temp = document.createElement("div");
temp.innerHTML = body;
var sanitized = temp.textContent || temp.innerText;

sanitized will now contain: "some text and some more text"

Simple, no jQuery needed, and it shouldnt let you down even in more complex cases :)

James

share|improve this answer
Thanks for this @lytnus. – Aditya Saxena Dec 27 '12 at 14:07
No problemo! :) – lytnus Dec 28 '12 at 16:12
@lytnus: brilliant!!! How does it work? – Hoàng Long Feb 20 at 4:10
Hiya. Well, basically all it does is create a new DIV, set the inner HTML content to whatever is provided (which I assume means any HTML code is parsed), and then asks for all of the text content of the div, which ignores said HTML. – lytnus Mar 14 at 19:05
in my browser the object doesn't have field innerText – Adrian Apr 19 at 2:23
show 1 more comment

my simple JavaScript library called FuncJS has a function called "strip_tags()" which does the task for you — without requiring you to enter any regular expressions.

For example, say that you want to remove tags from a sentence - with this function, you can do it simply like this:

strip_tags("This string <em>contains</em> <strong>a lot</strong> of tags!");

This will produce "This string contains a lot of tags!".

For a better understanding, please do read the documentation at http://docs.funcjs.webege.com/strip_tags().html.

Additionally, if you'd like, please provide some feedback through the form. It would be very helpful to me!

share|improve this answer

For a proper HTML sanitizer in JS, see http://code.google.com/p/google-caja/wiki/JsHtmlSanitizer

share|improve this answer

you can use a powerful library for management String which is undrescore.string.js

_('a <a href="#">link</a>').stripTags()

=> 'a link'

_('a <a href="#">link</a><script>alert("hello world!")</script>').stripTags()

=> 'a linkalert("hello world!")'

Don't forget to import this lib as following :

        <script src="underscore.js" type="text/javascript"></script>
        <script src="underscore.string.js" type="text/javascript"></script>
        <script type="text/javascript"> _.mixin(_.str.exports())</script>
share|improve this answer

The selected answer doesn't always ensure that HTML is stripped, as it's still possible to construct an invalid HTML string through it by crafting a string like the following.

  "<<h1>h1>foo<<//</h1>h1/>"

This input will ensure that the stripping assembles a set of tags for you and will result in:

  "<h1>foo</h1>"

additionally jquery's text function will strip text not surrounded by tags.

Here's a function that uses jQuery but should be more robust against both of these cases:

var stripHTML = function(s) {
    var lastString, tmp;

    do {
        lastString = s;
        s = $('<div>').html(s).text();
    } while(lastString !== s) 

    return s;
};
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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