XMLTools
IsCData
determine if an expression is an XML CDATA data structure
Calling Sequence
Parameters
Description
Examples
IsCData(expr)
expr
-
anything; expression to test
The IsCData(expr) command tests whether a Maple expression expr is an XML CDATA data structure. If expr is an XML CDATA 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[XMLCData] constructor.
with⁡XMLTools:
IsCData⁡XMLElement⁡a,b=c,d,e
false
IsCData⁡XMLCData⁡Some <b>CDATA</b> text
true
See Also
XMLTools[CDataData]
XMLTools[XMLCData]
Download Help Document