ListChangeDelims() - change List delimiter
ListChangeDelims.cfm
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>ListChangeDelims function example: how to change List delimiter</title>
</head>
<body>
<h2 style="color:hotpink">ListChangeDelims Function Example</h2>
<cfset ColorList="DarkRed,DarkSalmon,DarkSeaGreen">
<cfoutput><b>ColorList: #Colorlist#</b></cfoutput>
<br />
<cfset Temp = ListChangeDelims(ColorList,";",",")>
<cfoutput><b>Temp[New Delimiter ;]: #Temp#</b></cfoutput>
</body>
</html>
![](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgZAjWbA-X6zoA4IhcRfCIcLdJGYb5-uLYw5iZkn2OnZZK0XEWsNDbjZzfqLQmCugJHIXfuKZqSwM0jQzO7gjXH3cDpSucL7DKewcDPa5Wje-Ul4TWwrZZE2w8-qAY5Ys31Kf194dXJVsU/s1600/ListChangeDelims.gif)