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

Online Help

All Products    Maple    MapleSim


XMLTools

  

IsText

  

determine if an expression is an XML text data structure

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

IsText(expr)

Parameters

expr

-

anything; expression to test

Description

• 

The IsText(expr) command tests whether a Maple expression expr is an XML text data structure. If expr is an XML text data structure, the value true is returned.  Otherwise, false is returned.

  

Such expressions can be encountered in XML documents that are read from external sources, or can be generated programmatically by using the XMLTools[XMLText] constructor.

Examples

withXMLTools:

IsTextXMLElementa,b=c,d

false

(1)

IsTextXMLTextGod does arithmetic!

true

(2)

See Also

XMLTools

XMLTools[XMLElement]

XMLTools[XMLText]