TeleFlow BasicScript Right

TeleFlow BasicScript Right

From TeleFlow

Jump to: navigation, search

Returns a specified number of rightmost characters in a string.

Syntax

RIGHT(string,number)
string: a string value or variable.
number: the number of rightmost characters to return from string.


Related Steps

Image:Iv_517.gif BasicScript

Examples

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