XMLTools[FirstChild] - extract the first child node of an XML tree
XMLTools[SecondChild] - extract the second child node of an XML tree
XMLTools[ThirdChild] - extract the third child node of an XML tree
XMLTools[LastChild] - extract the last child node of an XML tree
|
Calling Sequence
|
|
FirstChild(xmlTree)
SecondChild(xmlTree)
ThirdChild(xmlTree)
LastChild(xmlTree)
|
|
Parameters
|
|
xmlTree
|
-
|
Maple XML tree; XML element
|
|
|
|
|
Description
|
|
•
|
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.
|
|
|
Examples
|
|
>
|
|
>
|
|
>
|
|
<a colour = 'red'>
<b>foo</b>
<c>bar</c>
<d>baz</d>
</a>
| |
>
|
|
>
|
|
>
|
|
>
|
|
|
|
Download Help Document
Was this information helpful?