> For the complete documentation index, see [llms.txt](https://doc.sysdevmobile.com/kalipso5/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doc.sysdevmobile.com/kalipso5/developing/form/expressions/functions/functions-descriptions/string-functions/right.md).

# Right

Kalipso - Form - Expressions - Functions - Functions Descriptions - String Functions - Right

This Function returns a *\<string>*, composed by the **Length** chars at right of the **Source string**.

### Parameters

* **Source string** *\<string> -* String from where the value will be retrieved.
* **Length** *\<numeric*> - Length of the left part of **Source string** to extract.

### Examples

* *Example 1*

Right("Everyone enjoys Kalipso.", 8)\
**Result** = Kalipso.

* *Example 2*

Right("Everyone enjoys Kalipso.", 24)\
**Result** = Everyone enjoys Kalipso.

{% hint style="info" %}
If you specify a **Length** higher than the length of **Source String**, the returned value will be the entire **Source String**.
{% endhint %}
