http://qs321.pair.com?node_id=1045959


in reply to Re^2: adding XML records using XML::Twig
in thread adding XML records using XML::Twig

If you pass text as the third argument to insert_new_elt() it will be bracketed by the given element tags. However, if you pass a hash reference, you can instead change the elements attributes. So:
$insert->insert_new_elt('last_child','description', 'mydescription' ); # creates: <description>mydescription</description> $insert->insert_new_elt('last_child','description', { desc => 'mydescr +iption' } ); # creates: <description desc="mydescription" />

Replies are listed 'Best First'.
Re^4: adding XML records using XML::Twig
by Anonymous Monk on Jul 24, 2013 at 02:01 UTC
    How to get to <sites> <site info="123"> <description> <descrip descrip1="abc" descrip2="def"/> </description> </site> </sites> Thanks