Right(
     string:string,
     int:length
)
string

Arguments

string

Input string to return the right portion of.

length

Length of string to return.

Return value

Specified portion of the string.

Description

Returns length characters from the right side of string.

Example:

Output( Right("Hello World", 5) );
--> World

See also:
Left
Mid