SPECIALCHARS

Usage

TIBCO iProcess Workspace (Browser)

TIBCO iProcess Workspace (Windows)

Include non-printing characters in a text string.

Syntax

SPECIALCHARS (text)

where text is a text string which may include any number of the following sequences (plus ordinary text if required):

Sequence

Meaning

\n

newline

\r

carriage return

\t

tab

\nnn

the character with decimal code nnn (must be 3 digits, so include leading zeros if required)

\\

a literal backslash \

Returns

The resulting text string.

Examples

TIBCO iProcess Modeler:

SPECIALCHARS(“Your test results are\r\n English=80 \r\n Maths=90")

returns

Your test results are
English=80
Maths=90

TIBCO Business Studio:

IPEConversionUtil.SPECIALCHARS("Your test results are\r\n English=80 \r\n Maths=90");