XmlLoadString: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
Fernando187 (talk | contribs) (Remove obsolete Requirements section) |
||
(6 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
{{Server client function}} | {{Server client function}} | ||
{{New feature/item|3. | {{New feature/item|3.0158|1.5.7|19626|This function creates an [[Xmlnode]] from a string input.}} | ||
==Syntax== | ==Syntax== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
Line 16: | Line 16: | ||
This example loads an XML string and loops the children while outputting to debugscript. | This example loads an XML string and loops the children while outputting to debugscript. | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
local rootNode = xmlLoadString("<animals test='x'><monkey name='crosroad'></monkey> < | local rootNode = xmlLoadString("<animals test='x'><monkey name='crosroad'></monkey> <fox name='luxy'></fox></animals>") | ||
if rootNode then | if rootNode then | ||
local rootAttributes = xmlNodeGetAttributes(rootNode) | local rootAttributes = xmlNodeGetAttributes(rootNode) | ||
print("Root Node", "Name: "..xmlNodeGetName(rootNode), "Attributes :"..toJSON(rootAttributes)) | |||
local children = xmlNodeGetChildren(rootNode) | local children = xmlNodeGetChildren(rootNode) | ||
Line 26: | Line 26: | ||
for i, childNode in ipairs(children) do | for i, childNode in ipairs(children) do | ||
local attributes = xmlNodeGetAttributes(childNode) | local attributes = xmlNodeGetAttributes(childNode) | ||
print("Child #"..i, "Name: "..xmlNodeGetName(childNode), "Attributes :"..toJSON(attributes)) | |||
end | end | ||
end | end |
Latest revision as of 17:16, 7 November 2024
This function creates an Xmlnode from a string input.
Syntax
xmlnode xmlLoadString ( string xmlString )
OOP Syntax Help! I don't understand this!
- Note: This function is a static function underneath the XML class.
- Method: XML.loadstring(...)
Required Arguments
- xmlString: A string containing XML data
Returns
Returns the root xmlnode object of an xml string if successful, or false otherwise (invalid XML string).
Example
This example loads an XML string and loops the children while outputting to debugscript.
local rootNode = xmlLoadString("<animals test='x'><monkey name='crosroad'></monkey> <fox name='luxy'></fox></animals>") if rootNode then local rootAttributes = xmlNodeGetAttributes(rootNode) print("Root Node", "Name: "..xmlNodeGetName(rootNode), "Attributes :"..toJSON(rootAttributes)) local children = xmlNodeGetChildren(rootNode) for i, childNode in ipairs(children) do local attributes = xmlNodeGetAttributes(childNode) print("Child #"..i, "Name: "..xmlNodeGetName(childNode), "Attributes :"..toJSON(attributes)) end end