As of ColdFusion (2021 release), CORBA has been removed. You can no longer use CORBA-related features, functions, and tags.
Searches an array for the first position of a specified object and deletes it. The function searches for simple objects such as strings and numbers. Simple object string searches are case-insensitive. This function does not support searches for COM and CORBA objects.
The updated array after deleting the specified element.
ColdFusion (2018 release): Introduced named parameters.
ColdFusion (2016 release): Added this function
ArrayDeleteNoCase(array,value)
Parameter |
Description |
|---|---|
array |
(Required) Array to search in. |
value |
(Required) A string, numeric, or boolean value on which to search. Case insensitive. If the object does not match any member in the array, the function returns false. |
<cfscript>
myArray=ArrayNew(1);
myArray=["Analyze","Analyse","Analysis","analyse","analysis","analyze"];
WriteOutput(ArrayDeleteNoCase(myArray,"analyze")); // Returns true because object matches an element in the array
WriteOutput(SerializeJSON(myArray)); // Returns array after deleting the first element in the array
</cfscript>
["Analyse","Analysis","analyse","analysis","analyze"]
<cfscript>
myArray=ArrayNew(1);
myArray=["Analyze","Analyse","Analysis","analyse","analysis","analyze"];
WriteDump(myArray.DeleteNoCase("analyze"));
</cfscript>
Sign in to your account