TeleFlow BasicScript Right
From TeleFlow
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
Examples
BasicScript code Result @A = "Hello world" world @B = RIGHT(@A,5) PRINT "@B"
