RIGHT
Returns a specified number of characters from the end of a text string.
| Category | Text |
| Syntax | RIGHT(text, [num_chars]) |
Parameters
| Parameter | Required | Description |
|---|---|---|
text | Required | The text string from which to extract characters. |
num_chars | Optional | The number of characters to extract from the right. Defaults to 1. |
Example
RIGHT("Hello", 3) // → "llo"
Auto-generated from the EngCanvas function registry.