Reference
Components
String Array Find 
Description
The String Array Find primitive will find the first occurrence of a given string in the array. You can choose whether comparisons are case 
sensitive. You can also choose whether to reverse the direction of the find and start at the end of the array working backwards towards the 
front. By default the find will start at the beginning of the array and work forwards.
Example
If the source array is Apple, Banana, Orange, Pear then finding “Orange” would return an index of 2. However, if you change the Rev input to
True then the result would be 1.
Connectors
Inputs Type Outputs Type
Source array to search 
through
String Index of the string in 
the array (zero 
indexed) or -1 if the 
string was not found. 
Int
String to find
String
Whether comparisons 
should be case sensitive
Boolean
Perform the find in reverse 
from beginning to start
Boolean
402 of 494










