CDATA

Description

When working with XML as a target, returns the supplied text as an XML CDATA node. In XML, a CDATA section is used to mark a block of text that you want to pass through without being parsed. 

Syntax

CDATA ( text )

Parameter Description
text Character data to be formatted as CDATA.

Remarks

CDATA is only useful for XML target data.

Example

Entering the following text:

CDATA("Hello<BR>World") will generate the text with standard XML CDATA format:

<![CDATA[Hello<BR>World]]>

Note: CDATA is most useful when inserting a block of formatted text (such as an Address field) into the target.