ArrayValuecountnocase()

Returns the number of times the search element occurs in the array, or return 0 if not found (case in-sensitive matching)

Usage

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

Calling

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

ArrayValuecountnocase(
   array=?, 
   element=?
);

Supports passing parameters as a structure using ArgumentCollection:

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