STR
Usage
TIBCO iProcess Workspace (Browser)
TIBCO iProcess Workspace (Windows)
Returns the textual equivalent of the number passed, to the specified number of decimals.
Syntax
STR (number, decimals)
where:
• | number is a numeric value. |
• | decimals is the required number of decimals, as a numeric. |
Returns
The equivalent text string.
Examples
TIBCO iProcess Modeler:
STR (2.3, 2)
returns "2.30"
STR (2.3, 0)
returns "2"
TIBCO Business Studio:
IPEConversionUtil.STR(2.3,2);
IPEConversionUtil.STR(2.3,0);