XMLTools
RemoveChild
remove a child element from an XML element
Calling Sequence
Parameters
Description
Examples
RemoveChild(xmlTree, child)
xmlTree
-
Maple XML tree; XML element
child
XML element or positive integer; child element or position of the child element to remove from the xmlTree
The RemoveChild(xmlTree, child) command removes the child node child from the XML element xmlTree. All children equal to the specified child are removed unless the child argument is a positive integer less than or equal to the number of children of the tree. (The positive integer is taken to represent the position of a child and only that child node is removed.)
Note: The input XML tree is not modified; a copy of the tree is returned with the indicated child removed.
with⁡XMLTools:
x≔XMLElement⁡a,,XMLElement⁡b,colour=red,foo,XMLElement⁡c,colour=blue,bar,XMLElement⁡d,,baz:
Print⁡x
<a> <b colour = 'red'>foo</b> <c colour = 'blue'>bar</c> <d>baz</d> </a>
Print⁡RemoveChild⁡x,2
<a> <b colour = 'red'>foo</b> <d>baz</d> </a>
Print⁡RemoveChild⁡x,XMLElement⁡d,,baz
<a> <b colour = 'red'>foo</b> <c colour = 'blue'>bar</c> </a>
See Also
XMLTools[AddChild]
XMLTools[FirstChild]
XMLTools[GetChild]
XMLTools[HasChild]
XMLTools[XMLElement]
Download Help Document