Whatever message this page gives is out now! Go check it out!
arrayFindNoCase(array, value [, parallel] [, maxThreadCount])ArrayFindNoCase(array, callback)| Parameter | Description |
array | Array to search in. Valid datatypes in array are:
|
value | Value to search for in the array. |
callback | Inline function executed for each element in the array. Returns true if the array element matches the search criterion. |
parallel | True if you want to enable parallel programming. |
maxThreadCount | The number of threads the function can execute. The number of threads must be between 1-50. If the value exceeds 50, there is an exception. |
<cfscript>
writeDump(ArrayFindNoCase(["STRING","string"], "string"));
writeDump(ArrayFindNoCase(["STRING","string"], function(s) {
if(compare(s, "string")==0)
return true;
else
return false;
}
));
</cfscript>