Parsing XML
For processing incoming XML documents, use xml.parse{}
to parse the document into an XML node tree, which you can then manipulate and process as required.
local X = xml.parse{data=SampleXML}
Once the document is parsed, here are some techniques to work with your parsed XML data using the XML API and the XML Library’s extended capabilities:
Â
Â