Returns to specified number of characters from the end of a text value.
Function
result = right(text, count)
Arguments
Argument | Data Type |
text | string |
---|---|
count | integer |
result | string |
Examples
result = right('Falcon Heavy', 5) /* result = 'Heavy' */
Returns to specified number of characters from the end of a text value.
result = right(text, count)
Argument | Data Type |
text | string |
---|---|
count | integer |
result | string |
result = right('Falcon Heavy', 5) /* result = 'Heavy' */