XMLTools[Equal] - test whether two XML trees are equal
|
Calling Sequence
|
|
Equal(xmlTree1, xmlTree2)
|
|
Parameters
|
|
xmlTree1
|
-
|
Maple XML tree; XML element
|
xmlTree2
|
-
|
Maple XML tree; XML element
|
|
|
|
|
Description
|
|
•
|
The Equal(xmlTree1, xmlTree2) command test whethers two XML trees are the same.
|
•
|
The arguments must be correctly formed XML tree data structures. One of the values true and false is returned.
|
|
|
Examples
|
|
>
|
|
>
|
|
>
|
|
<a colour = 'red' size = '10'>
<b colour = 'blue'>text</b>
</a>
| |
>
|
|
>
|
|
<a colour = 'red' size = '10'>
<b colour = 'blue'>text</b>
</a>
| |
>
|
|
>
|
|
<a colour = 'red' size = '10'>
<b colour = 'blue'>text</b>
</a>
| |
>
|
|
| (1) |
>
|
|
| (2) |
>
|
|
| (3) |
>
|
|
| (4) |
|
|
Download Help Document
Was this information helpful?