XMLTools
FirstChild
extract the first child node of an XML tree
SecondChild
extract the second child node of an XML tree
ThirdChild
extract the third child node of an XML tree
LastChild
extract the last child node of an XML tree
Calling Sequence
Parameters
Description
Examples
FirstChild(xmlTree)
SecondChild(xmlTree)
ThirdChild(xmlTree)
LastChild(xmlTree)
xmlTree
-
Maple XML tree; XML element
Each of these routines accesses a particular child of the given XML element xmlTree. The returned expression is either of type string (NULL is returned in the case of a plain text child node) or an XML tree data structure (when the child node has a tree structure of its own).
Each of these procedures is a specialization of the GetChild routine for common special cases. For instance, SecondChild retrieves the second content element of xmlTree if there are at least two such children. Otherwise, NULL is returned.
with⁡XMLTools:
x≔XMLElement⁡a,colour=red,XMLElement⁡b,,foo,XMLElement⁡c,,bar,XMLElement⁡d,,baz:
Print⁡x
<a colour = 'red'> <b>foo</b> <c>bar</c> <d>baz</d> </a>
Print⁡FirstChild⁡x
<b>foo</b>
Print⁡SecondChild⁡x
<c>bar</c>
Print⁡ThirdChild⁡x
<d>baz</d>
Print⁡LastChild⁡x
See Also
XMLTools[GetChild]
XMLTools[HasChild]
Download Help Document