StructKeyList() - get a list of keys from a structure
StructKeyList.cfm
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>StructKeyList function example: how to get a list of keys from a structure</title>
</head>
<body>
<h2 style="color:HotPink">StructKeyList Function Example</h2>
<cfset Color=StructNew()>
<cfset Color.ID=1>
<cfset Color.Name="LightGoldenRodYellow">
<cfset Color.Value="##FAFAD2">
<cfdump var="#Color#" label="Color">
<cfset KeyList=StructKeyList(Color,";")>
<br />
<cfoutput>
<b>
Color Structure Key List: #KeyList#
</b>
</cfoutput>
</body>
</html>
- StructClear() - remove all data from a structure
- StructCount() - count the keys in a structure
- StructFind() - get the value associated with a key in a structure
- StructInsert() - insert a key value pair into a structure
- StructIsEmpty() - determine whether a structure contains data
- StructKeyArray() - get an array of keys from a structure
- StructKeyExists() - check whether a specific key is present in a structure
- StructNew() - create a structure
- StructUpdate() - update a structure key with a value
- cfdump - dump a structure