> For the complete documentation index, see [llms.txt](https://docs.cascade.io/cascade/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cascade.io/cascade/functions-and-expressions/functions/text/right.md).

# RIGHT

RIGHT( `text`, `number of characters` )

Returns a substring of the given `text`, counting a given number of characters from the right.

### Arguments

| Argument               | Description                    |
| ---------------------- | ------------------------------ |
| `text`                 | Starting string                |
| `number of characters` | Number of characters to return |

### Output

Outputs substring of `text`

### Example

```
RIGHT( "Missoula", 2)
>> "la"
```
