STRCONVERT

Usage

TIBCO iProcess Workspace (Browser)

TIBCO iProcess Workspace (Windows)

Convert a text string.

Syntax

STRCONVERT (text, operation)

where:

text is the string to be converted.
operation (numeric) is the type of conversion. Values may be added for combinations of operations:

Value

Conversion Type

1

delete all spaces

2

delete all leading spaces

4

delete all trailing spaces

8

reduce sequences of multiple spaces to single spaces

16

convert to lowercase

32

convert to uppercase

Returns

The text string after conversion.

Examples

TIBCO iProcess Modeler:

STRCONVERT ("test", 32)

returns "TEST"

TIBCO Business Studio:

IPEConversionUtil.STRCONVERT("test",32);