Greetings, Monks,

I am using XML::LibXML to delete all the child nodes of a certain type below the parent node while retaining the other child nodes, apart from empty text nodes. For reasons unknown to me, all the information stored is as attributes and the text nodes are all always empty.

The problem is that for each deleted node, a text node is left behind. So if I start with:

<table> <header colname1="monk" colname2="favourite syllable"> <row monk="mainmonk" syllable="om"/> <row monk="loris" syllable="erm"/> </table>

and remove all the rows with

my @rowNodes = $parent->findnodes("row"); foreach my $rowNode (@rowNodes) { $parent->removeChild($rowNode); }

I end up with

<table> <header colname1="monk" colname2="favourite syllable"> </table>

rather than

<table> <header colname1="monk" colname2="favourite syllable"> </table>

Can anyone tell me how to remove the empty text nodes corresponding to the row nodes?

Thanks,

loris


In reply to XML::LibXML - Removing text nodes by loris

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.