These functions searches the array for the specified value. Returns the index in the array of the first match, or 0 if there is no match.
arrayFind(array, value)
returns numeric
someArray.find(value)
Name | Type | Required | Default | Description |
---|---|---|---|---|
array | array | Yes | The array you are searching. | |
value | any | Yes | The value you are looking for in the array. CF10+ or Lucee4.5+ support passing a closure function in this argument as well. |
Returns the index of the element “apple” in the array
writeOutput( arrayFind( ["orange","pineapple","apple"], "apple" ));
Calls the find member function of the array object. Requires CF11+ or Lucee4.5+
fruit = [ "orange", "pineapple", "apple" ];
writeOutput( fruit.find( "apple" ) );
Case-sensitive so “Apple” is not in the array, returns 0. Use arrayFindNoCase for case insensitive matching.
writeOutput( arrayFind(["orange","pineapple","apple"], "Apple") );
CF10+ Lucee4.5+ The arrayFind function passes each array value into the supplied function. The function returns a boolean, true
if you found what you are looking for. The result of the arrayFind function is the index of the first matching array element found, or 0
if not found. Use arrayFindAll to return an array of all found item indexes.
a = [5,4,3,2,1];
pos = arrayFind(a, function(item) {
return item == 2;
});
writeOutput(pos);