array.findAllNoCase()

These functions searches the array for the specified object and return the positions of all occurrence of this values.

array.findAllNoCase( value=any )

Returns: Array

Argument Description
value
any, required

The value to find

Examples

myarray = ["one","two","three","TWO","five","Two"];
	writeDump(myarray);
	res = myarray.findallnocase("TWO");
	writeDump(res);
	res = myarray.findallnocase("one");
	writeDump(res);

See also