vote up 0 vote down star

Is there the regular expression that can completely remove a HTML tag? By the way, I'm using Java.

flag

41% accept rate
2  
Typing your title into the Search box, I got the following: stackoverflow.com/search?q=How+to+remove+HTML+tag… ... did you not get the same while you were posting the question? – kdgregory Nov 9 at 12:37
I found no duplicates. These questions care about extracting text from HTML: stackoverflow.com/questions/240546/… stackoverflow.com/questions/832620/… – tangens Nov 10 at 17:24

4 Answers

vote up 9 vote down check

You should use a HTML parser instead. I like htmlCleaner, because it gives me a pretty printed version of the HTML.

With htmlCleaner you can do:

TagNode root = htmlCleaner.clean( stream );
Object[] found = root.evaluateXPath( "//div[id='something']" );
if( found.length > 0 && found instanceof TagNode ) {
    ((TagNode)found[0]).removeFromTree();
}
link|flag
Thanks for pointing me to htmlCleaner :) – exhuma Nov 9 at 12:16
vote up 1 vote down

No. Regular expressions can not by definition parse HTML.

You could use a regex to s/<[^>]*>// or something naive like that but it's going to be insufficient, especially if you're interested in removing the contents of tags.

As another poster said, use an actual HTML parser.

link|flag
vote up 0 vote down

If you just need to remove tags then you can use this regular expression:

content = content.replaceAll("<[^>]+>", "");

It will remove only tags, but not other HTML stuff. For more complex things you should use parser.

EDIT: To avoid problems with HTML comments you can do the following:

content = content.replaceAll("<!--.*?-->", "").replaceAll("<[^>]+>", "");
link|flag
Since you do not use any of the meat characters ., ^ and $, the s- and m flags can be omitted. – Bart K. Nov 9 at 9:50
This regex is liable to cause mangling if the HTML contains XML comments with embedded '<' or '>' characters. – Stephen C Nov 9 at 12:24
vote up 0 vote down

Alternatively, if your intent is to display user-controlled input back to the client, then you can also just replace all < by &lt; and all > by &gt;. This way the HTML won't be interpreted as-is by the client's application (the webbrowser).

If you're using JSP as view technology, then you can use JSTL's c:out for this. It will escape all HTML entities by default. So for example

<c:out value="<script>alert('XSS');</script>" />

will NOT display the alert, but just show the actual string as is.

link|flag

Your Answer

Get an OpenID
or

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