ListGetAt() - get List element at a specified position
ListGetAt.cfm
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>ListGetAt function example: how to get List element at a specified position</title>
</head>
<body>
<h2 style="color:hotpink">ListGetAt Function Example</h2>
<cfset ColorList="FloralWhite,ForestGreen,Fuchsia,Gainsboro">
<cfoutput><b>ColorList: #ColorList#</b></cfoutput>
<br /><br />
<cfoutput><b>ColorList Element At Position 3: #ListGetAt(ColorList,3,",")#</b></cfoutput>
</body>
</html>
![](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjrrgF_EzQP47bYnH7-r47h2P1p3ivR49h_vAstpf2-sfeLRtvCGCnKGIwOzTMZtZn2qWDacVWQ2Ti_0PwPPIuI9PwsyQsZL4LYxdAwl9qpQMIMitPu2COQYz8I9psV65d03Je74BH5JG4/s1600/ListGetAt.gif)