StructFindKey()
Searches recursively through a substructure of nested arrays, structures, and other elements, for structures whose values match the search key in the value parameter.
StructFindKey( Top=struct, Key=string, Scope=string );
Returns: Array
Examples
Non-Member Function
animals = {
cow: {
noise: "moo",
size: "large"
},
pig: {
noise: "oink"
},
cat: {
noise: "meow",
size: "small"
}
};
// Show all animals
Dump(
label: "All animals",
var: animals
);
// Find "all" animal(s) containing key of 'size'
findAnimalsWithSize = StructFindKey(animals, "size", "all");
// Show results in findAnimalsWithSize
Dump(
label: "Results of StructFindKey(animals, ""size"", ""all"")",
var: findAnimalsWithSize
);
See also
- Structures
- struct.findKey()
- Search Issue Tracker
- Search Lucee Test Cases (good for further, detailed examples)