in reply to Re^2: Update an XML node value based on one of the attribute values.
in thread Update an XML node value based on one of the attribute values.
$ perl -MXML::LibXML -le " $q = XML::LibXML::Element->new(q{q}); $q-> +removeChildNodes; $q->appendText(55); print $q;" <q>55</q>
|
|---|