/
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
XML Structure and Node Types
XML Structure and Node Types
More like this
Parsing and Serializing JSON
Parsing and Serializing JSON
Read with this
Using XMLUtils.lua Module for Extended XML Functionality
Using XMLUtils.lua Module for Extended XML Functionality
More like this
Building HTTP Requests
Building HTTP Requests
Read with this
XML Techniques
XML Techniques
More like this
HTTP Response Structure
HTTP Response Structure
Read with this