> For the complete documentation index, see [llms.txt](https://chaoses-ib.gitbook.io/directory-opus/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://chaoses-ib.gitbook.io/directory-opus/manual/reference/evaluator/right.md).

# Right

\<evalcmd> Right && string && Specified portion of the string. && string && string && Input string to return the right portion of. && length && int && Length of string to return. \</evalcmd>

Returns *length* characters from the right side of *string*.

//<Example://>

```
Output( Right("Hello World", 5) );
--> World
```

*See also:*\
[left](/directory-opus/manual/reference/evaluator/left.md)\
[mid](/directory-opus/manual/reference/evaluator/mid.md)
