right
Last N characters of a string.
Syntax
Section titled “Syntax”v = right(text, num_chars)Description
Section titled “Description”Returns the rightmost num_chars characters from text. Default num_chars is 1.
Example
Section titled “Example”right('hello world', 5) % 'world'