> 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/find.md).

# Find

Kalipso - Form - Expressions - Functions - Functions Descriptions - String Functions - Find

This Function returns a \<numeric>, which is the position of the **String to search** in the **Source string**, starting at **Starting position**.\ <br>

### Parameters

* **Source string** <*string*> - String where the search will be performed.
* **String to search** <*string*> - String to search for.
* **Starting position** <*string*> - Position in **Source string** from where the search should start.

### Examples

* *Example 1*

Find("Kalipso", "K", 1)\
**Result** = 1

* *Example 2*

Find("Kalipso", "p", 1)\
**Result** = 5

* *Example 3*

Find("Kalipso", "G", 1)\
**Result** = 0

* *Example 4*

Find("Kalipso", "A", 1)\
**Result** = 0

* *Example 5*

Find("Kalipso", "K", 2)\
**Result** = 0

* *Example 6*

Find("Kalipso", "li", 1)\
**Result** = 3

{% hint style="warning" %}
This Function is case sensitive.
{% endhint %}
