|
DescriptionThis
function performs a case-insensitive search on an array for a specified object.
The function can search for simple objects such as strings or numbers
and complex objects such as structures. It does not support COM
and CORBA objects.
ReturnsIndex
in the array of the first match, or 0, if there is no match.
Function syntaxArrayFindNoCase(array, object)
Parameters
Parameter
|
Description
|
array
|
Name of an array
|
object
|
Object to search
|
Example<cfoutput>
#ArrayFindNoCase(MyArray, 2)#
</cfoutput>
|
|
|