TeleFlow BasicScript Left

TeleFlow BasicScript Left

From TeleFlow

Jump to: navigation, search

Returns a specified number of leftmost characters in a string.

Syntax

LEFT(string,number)


string: a string value or variable.
number: the number of leftmost characters to return from string.


Related Steps

Image:Iv_517.gif BasicScript

Examples

BasicScript code      Result
@A = "Hello world" Hello
@B = LEFT(@A,5)
PRINT "@B"