InStr
This Flow Script tutorial explains how to use the InStr function with syntax and examples.
Description
Syntax
Parameters
Returns
Example
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: -1Last updated
Was this helpful?