TeleFlow BasicScript Right

TeleFlow BasicScript Right

From TeleFlow

(Difference between revisions)
Jump to: navigation, search

Wikilib (Talk | contribs)
(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> ...)
Next diff →

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"