AddChild - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


XMLTools

  

AddChild

  

add a child element to an XML element

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

AddChild(xmlTree, child, n)

Parameters

xmlTree

-

Maple XML tree; XML element

child

-

string or XML element; child element to add to the xmlTree

n

-

nonnegative integer; position after which the child element is added

Description

• 

The AddChild(xmlTree, child, n) command creates a new XML element from xmlTree by inserting the XML element child after the position indicated by n. Parameter n must be less than or equal to the number of children in the original tree xmlTree. The new child node child becomes the n + 1st child of the resulting tree.

Examples

withXMLTools:

xXMLElementa,,some text,XMLElementb,,more text,XMLElementc

x_XML_Element_XML_ElementTypea,,_XML_Textsome text,_XML_Element_XML_ElementTypeb,,_XML_Textmore text,_XML_Element_XML_ElementTypec,,

(1)

useXMLToolsinforifrom0toContentModelCountxdoprintAddChildx,XMLElementd,,some child text,iend doend use

_XML_Element_XML_ElementTypea,,_XML_Element_XML_ElementTyped,,_XML_Textsome child text,_XML_Textsome text,_XML_Element_XML_ElementTypeb,,_XML_Textmore text,_XML_Element_XML_ElementTypec,,

_XML_Element_XML_ElementTypea,,_XML_Textsome text,_XML_Element_XML_ElementTyped,,_XML_Textsome child text,_XML_Element_XML_ElementTypeb,,_XML_Textmore text,_XML_Element_XML_ElementTypec,,

_XML_Element_XML_ElementTypea,,_XML_Textsome text,_XML_Element_XML_ElementTypeb,,_XML_Textmore text,_XML_Element_XML_ElementTyped,,_XML_Textsome child text,_XML_Element_XML_ElementTypec,,

_XML_Element_XML_ElementTypea,,_XML_Textsome text,_XML_Element_XML_ElementTypeb,,_XML_Textmore text,_XML_Element_XML_ElementTypec,,,_XML_Element_XML_ElementTyped,,_XML_Textsome child text

(2)

See Also

XMLTools

XMLTools[ContentModelCount]

XMLTools[FirstChild]

XMLTools[GetChild]

XMLTools[HasChild]

XMLTools[RemoveChild]