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

Online Help

All Products    Maple    MapleSim


XMLTools

  

SelectAttributes

  

select attributes of an XML element

  

RemoveAttributes

  

remove attributes of an XML element

  

SelectRemoveAttributes

  

select and remove attributes of an XML element

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

SelectAttributes(p, xmlTree)

RemoveAttributes(p, xmlTree)

SelectRemoveAttributes(p, xmlTree)

Parameters

p

-

Maple procedure (or other callable expression) that evaluates to either true or false; predicate for attributes to satisfy

xmlTree

-

Maple XML tree; XML element

Description

• 

The SelectAttributes(p, xmlTree) command returns the list of ordered attributes of the XML element xmlTree that satisfy the specified predicate p. The list that is returned is a (possibly empty) list of attribute data structures.

  

If no attribute of the input tree satisfies the given predicate, then an empty list is returned.

• 

The RemoveAttributes(p, xmlTree) command returns the list of ordered attributes of the XML element xmlTree that do not satisfy the specified predicate p. The list that is returned is a (possible empty) list of attribute data structures.

• 

The SelectRemoveAttributes(p, xmlTree) command is equivalent to the procedure (SelectAttributes, RemoveAttributes). That is,

• 

SelectRemoveAttributes( p, x ) = ( SelectAttributes( p, x ), RemoveAttributes( p, x ) )

  

An expression sequence of two lists is returned. Either or both lists may be empty.

• 

For all of these functions, any arguments passed after the first two are passed to the call of the predicate without further processing. Attributes data structures are passed to the predicate.

  

Note: These functions are analogous to the select, remove, and selectremove functions.

Examples

withXMLTools:

xXMLElementa,width=2,height=6,bgcolour=blue,fgcolour=green,foo,XMLElementb,,bar:

Printx

<a width = '2' height = '6' bgcolour = 'blue' fgcolour = 'green'>
  foo
  <b>bar</b>
</a>

mapPrint&comma;SelectAttributesattrtypeevalparseop2&comma;1&comma;attr&comma;integer&comma;x

width = '2'
height = '6'

(1)

mapPrint&comma;RemoveAttributesattrtypeevalparseop2&comma;1&comma;attr&comma;integer&comma;x

bgcolour = 'blue'
fgcolour = 'green'

(2)

sSelectRemoveAttributesattrtypeevalparseop2&comma;1&comma;attr&comma;integer&comma;x&colon;

mapPrint&comma;s1

width = '2'
height = '6'

(3)

mapPrint&comma;s2

bgcolour = 'blue'
fgcolour = 'green'

(4)

See Also

remove

select

selectremove

XMLTools

XMLTools[Attributes]

XMLTools[RemoveAttribute]