# Extract String

This Function returns a string, extracted from the specified Source string, according to a Rank and a Separator.

### Parameters

* **Source string** <*string*> - String from where to extract the substring.
* **Rank** <*numeric*> - Order of the substring to extract.
* **Separator** <*string*> - String used as a separator in the Source string, to divide it.<br>

### Examples

* *Example 1*

ExtractString("001;Kalipso Studio;5000;Software", 2, ";")\
**Result** = Kalipso Studio

* *Example 2*

ExtractString("001;Kalipso Studio;5000;Software", 1, ":")\
**Result** = 001;Kalipso Studio;5000;Software

* *Example 3*

ExtractString("001;Kalipso Studio;5000;Software", 2, ":")\
**Result** =

{% hint style="info" %}
If the Rank is higher than the number of parts, the result will be an empty string.
{% endhint %}

{% hint style="info" %}
If the Separator doesn’t exist and the specified Rank is 1, the result will be the specified Source string.
{% endhint %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://doc.sysdevmobile.com/kalipso5/developing/form/expressions/functions/functions-descriptions/string-functions/extract-string.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
