Index // Right


Format:

right( string, length )

Description:

Returns a portion of the specified string, starting from the last length characters from the right end of the of the string.

See Also:

Mid, Left

Example:

The line

print right("Hello", 2)
will print
lo

Revised:

0.9.5b