Functions - Right


Returns a String containing a specified number of characters from a string, starting at the end and working backwards.

Syntax

Right(source, length)

Parameters

sourceThe string from which characters are returned.
lengthThe number of characters to be taken from the string.

Example

This expression part evaluates to "ar":

Right("FooBar", 2)