/
Parsing XML
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:
, multiple selections available,
Related content
Working with XML
Working with XML
More like this
XML Techniques
XML Techniques
More like this
Generating XML
Generating XML
More like this
XML Library
XML Library
More like this
XML Structure and Node Types
XML Structure and Node Types
More like this
Using XMLUtils.lua Module for Extended XML Functionality
Using XMLUtils.lua Module for Extended XML Functionality
More like this