TeleFlow BasicScript Trim

TeleFlow BasicScript Trim

From TeleFlow

Jump to: navigation, search

Trims space characters from both ends of a string.

Syntax

TRIM(string)
string: a string value or variable.


Related Steps

Image:Iv_517.gif BasicScript

Examples

BasicScript code      Result
@A = "  HELLO WORLD  "       HELLO WORLD
@B = TRIM(@A) HELLO WORLD
PRINT "@A"
PRINT "@B"