# InStr

### **Description**‌

The InStr function returns the 0-based index of the first occurrence of the search string within input, or -1 if the substring is not found.

### **Syntax**

‌The syntax for the InStr function is:

`InStr(input, search)`

#### ‌**Parameters**

‌input - the string in which the search is done.

search - the string which searched for

### ‌**Returns**

‌The InStr function returns an integer.‌

### **Example**

Let's look at some InStr function examples and explore how to use the InStr function.‌

```
InStr("hello world", "h")
Result: 0

InStr("hello world", "e")
Result: 1

InStr("hello world", "o")
Result: 4

return InStr("hello world", " ")
Result: 5

InStr("hello world", "ell")
Result: 1

InStr("hello world", "eo")
Result: -1
```


---

# 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://help.novacuraflow.com/development/flowscript/functions/text-functions/instr.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.
