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

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.
  • Comment on Re^4: How I can change value in XML file ?