ArrayFind()
These functions searches the array for the specified object.
ArrayFind( array=array, value_or_closure=any );
Returns: Number
| Argument | Description |
|---|---|
|
array
array,
required
|
edit
The array to search in |
|
value_or_closure
any,
required
|
edit
The value to find or a closure/function that gets every value of the array as input and returns true if the given value is right. Alias: object, value, closure, function, udf, callback |
Examples
editFind first occurrence of string in array
fruitArray = ['apple', 'kiwi', 'banana', 'orange', 'mango', 'kiwi'];
favoriteFruits = arrayFind(fruitArray,'kiwi');
dump(favoriteFruits); //2
See also
- Arrays
- Collections
- ArrayContains()
- array.find()
- Search Issue Tracker open_in_new
- Search Lucee Test Cases open_in_new (good for further, detailed examples)