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
|
edit
The value to find |
Examples
edit myarray = ["one","two","three","TWO","five","Two"];
writeDump(myarray);
res = myarray.findallnocase("TWO");
writeDump(res);
res = myarray.findallnocase("one");
writeDump(res);