I have a user-submitted string that contains HTML content such as

"<p></p><div></div><p>Hello<br/>world</p><p></p>"

I would like to transform this string such that empty tag pairs are removed (but empty tags like <br/> are retained). For example, the result of this transformation should convert the string above to

"<p>Hello<br/>world</p>"

I'd like to use JSoup to do this, as I already have this on my classpath, and it would be easiest for me to perform this transformation on the server-side.

link|improve this question

48% accept rate
feedback

5 Answers

up vote 7 down vote accepted
+100

Here is example, that do just that (using JSoup):

    String html = "<p></p><div></div><p>Hello<br/>world</p><p></p>";
    Document doc = Jsoup.parse(html);
    for (Element element : doc.select("*")) {

        if (!element.hasText() && element.isBlock()) {
            element.remove();
        }
    }
    System.out.println(doc.body().html())

The output of code above is what you are looking for:

<p>Hello<br />world</p>
link|improve this answer
ding, ding, ding, we have a winner!!! – Don Jan 10 at 14:31
I tested it out and the code above prints <p>Hello<br />world</p> – Don Jan 10 at 15:19
feedback

Not really familiar with jsoup, but you could do this with a simple regex replace:

String html = "<p></p><div></div><p>Hello<br/>world</p><p></p>";
html = html.replaceAll("<([^>]*)></\\1>", "");

Although with a full parser you could probably just drop empty content during processing, depending on what you're eventually going to do with it.

link|improve this answer
replaceAll("<[a-zA-Z0-9]*></[a-zA-Z0-9]*>", ""); may look better than allowing anything other than > – Pragalathan M Jan 9 at 4:12
But what about <i>Italic<b></i>Bold</b> ? It's bad use, but still legitimate. I thing you need to be able to rematch exactly what was used in the first set of angle brackets. – FrankieTheKneeMan Jan 9 at 5:52
@PragalathanM, I considered that, but tags also permit hyphens, underscores, etc. Once you start adding all those characters, the statement starts looking ugly (and you might miss some). – Tom Elliott Jan 9 at 10:22
@FrankieTheKneeMan good suggestion, I've updated my answer. – Tom Elliott Jan 9 at 10:30
2  
This solution will only work for <p></p>, not for <p/> or <p> </p> which are equivalent. – Mathias Schwarz Jan 10 at 12:47
show 1 more comment
feedback

if you are using jquery, you can do it like

var tags = "<p></p><div></div><p>Hello<br/>world</p><p></p>";

$("<div id='mydiv'>"+tags+"</div>").appendTo($('body'));
$('#mydiv').children().each(function(){
    var elem = $(this);
    if(elem.html() === "") elem.remove();
});

fiddle : http://jsfiddle.net/LqCx5/2/

link|improve this answer
The childrens function is generating an error. – Don Jan 3 at 11:17
updated the answer.. pls check, its working fine i have tested in my machine. – dku.rajkumar Jan 3 at 11:35
This will remove all empty tags, including <br/> – Mathias Schwarz Jan 10 at 12:44
nope dude.. You should revert the downvote... its not removing <br/>.. pls check out the fiddle jsfiddle.net/LqCx5/3 ... check the body output, hello and world are in different line. – dku.rajkumar Jan 10 at 17:07
feedback

Jsoup will make correct XML from user-input HTML. Use XML parser to find and remove all empty tags. I think it's a better idea than regexp. Look here: Java Remove empty XML tags You can also use JSoup to find empty tags for you. Look here : http://jsoup.org/cookbook/extracting-data/selector-syntax and use Node.remove() method.

link|improve this answer
feedback

dont know the Jsoup,below code also works with simple javascript regex. try the below code.

function removeall(){
var tagarray=new Array("<p>","<div>");
source="<p></p><div></div><p>Hello<br/>world</p><p></p>";
for ( var int = 0; int < tagarray.length; int++) {
tag2=tagarray[int].replace("<","</");
var tagpair=new RegExp(tagarray[int]+tag2,"g");
source=source.replace(tagpair,"");
    }
alert(source);

}

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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