XMLTools
IsText
determine if an expression is an XML text data structure
Calling Sequence
Parameters
Description
Examples
IsText(expr)
expr
-
anything; expression to test
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.
with⁡XMLTools:
IsText⁡XMLElement⁡a,b=c,d
false
IsText⁡XMLText⁡God does arithmetic!
true
See Also
XMLTools[XMLElement]
XMLTools[XMLText]
Download Help Document