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 |
---|---|
& |
& |
< |
< |
> |
> |
" |
" |
' |
' |
Returns
The modified text string.
Examples
XMLDATA2STR ("PREBILL <> 1 AND PAPERWORK = 'Y' AND COMPANY = \"Smith & Smith\" AND SW_STARTEDDATE > !2002/02/02!)
returns “PREBILL <> 1 AND PAPERWORK = 'Y' AND COMPANY = \"Smith & Smith\" AND SW_STARTEDDATE > !2002/02/02!”