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