STRLEN

Usage

TIBCO iProcess Workspace (Browser)

TIBCO iProcess Workspace (Windows)

Returns the number of characters in a string.

Syntax

STRLEN (text)

where text is a text string.

Returns

The length in characters of text.

Examples

TIBCO iProcess Modeler:

STRLEN("") 

returns the value 0.

STRLEN("abcdef") 

returns the value 6.

TIBCO Business Studio:

IPEStringUtil.STRLEN("");
IPEStringUtil.STRLEN("abcdef");