ArrayFindnocase()

Returns the numeric of where the given element is within the array, or return 0 if not found, using case insensitive matching for strings

Usage

NUMERIC = ArrayFindnocase( array, element )
Argument Summary
array Array Object
element search element

Calling

Supports named-parameter calling allowing you to use the function like:

ArrayFindnocase(
   array=?, 
   element=?
);

Supports passing parameters as a structure using ArgumentCollection:

ArrayFindnocase( ArgumentCollection={
   array : ?, 
   element : ?
} );