TeleFlow BasicScript Right
From TeleFlow
(Difference between revisions)
(New page: Returns a specified number of rightmost characters in a string.<br> <br> ===Syntax=== :RIGHT(<b><i>string</i></b>,<b><i>number</i></b>)<br> :<b>string:</b> a string value or variable.<br> ...) |
(New page: Returns a specified number of rightmost characters in a string.<br> <br> ===Syntax=== :RIGHT(<b><i>string</i></b>,<b><i>number</i></b>)<br> :<b>string:</b> a string value or variable.<br> ...) |
Current revision
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"
