in reply to Re^2: How I can change value in XML file ?
in thread How I can change value in XML file ?

Yeah, in fact. Now I find the XML::LibXML docs quite nice but when I was starting with it way back when it was maddening. You need a decent understanding of the DOM and iterators and such to know which of the many docs to check. Once you do, they're great. Before that… uh… wha?

  • Comment on Re^3: How I can change value in XML file ?

Replies are listed 'Best First'.
Re^4: How I can change value in XML file ?
by ikegami (Patriarch) on Aug 05, 2010 at 14:25 UTC
    When a ::Parser object parses a document, it returns a ::Document object. A ::Document object holds a tree formed of ::Node objects. The ::Node class is the base class of everything in the tree, including ::Attribute objects (which represent attributes) and ::Text (which hold the text body of elements). You'll deal primarily with ::Element objects, which represent XML elements.