TeleFlow BasicScript Right

TeleFlow BasicScript Right

From TeleFlow

(Difference between revisions)
Jump to: navigation, search
(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 (00:40, 20 May 2008) (edit) (undo)
(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

Image:Iv_517.gif BasicScript

Examples

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