XMLTools[AttrCont] - split an XML element into its attributes and content
|
Calling Sequence
|
|
AttrCont(xmlTree)
|
|
Parameters
|
|
xmlTree
|
-
|
Maple XML tree; XML element
|
|
|
|
|
Description
|
|
•
|
The AttrCont(xmlTree) command separates the attributes and content of an XML element and returns them in an expression sequence of two lists. The first list is a list of equations that represent the attributes, each of whose left and right sides are strings. The second list is a list of expressions that represent the content where each of the expressions is of one of the types function or string.
|
•
|
Except for efficiency, the call AttrCont(xmlTree) is equivalent to using Attributes(xmlTree), ContentModel(xmlTree). When both the content model and the attributes are required, it is more efficient to call AttrCont than to use Attributes and ContentModel individually.
|
|
|
Download Help Document
Was this information helpful?