XMLDATA2STR

Usage

TIBCO iProcess Workspace (Browser)

TIBCO iProcess Workspace (Windows)

Converts characters in a text string from escaped sequences in the format &xxx; to XML special characters such as ' " & < or >.

Syntax

XMLDATA2STR (text)

where:

text is the text string to be operated upon.

The following table lists the characters and their corresponding converted value.

Character

Converted to

&amp;

&

&lt;

<

&gt;

>

&quot;

"

&apos;

'

Returns

The modified text string.

Examples

XMLDATA2STR ("PREBILL &lt;&gt; 1 AND PAPERWORK = &apos;Y&apos; AND COMPANY = \&quot;Smith &amp; Smith\&quot; AND SW_STARTEDDATE &gt; !2002/02/02!)

returns “PREBILL <> 1 AND PAPERWORK = 'Y' AND COMPANY = \"Smith & Smith\" AND SW_STARTEDDATE > !2002/02/02!”