Listchangedelims - MACROMEDIA COLDFUSION 4.5-CFML LANGUAGE Reference

Cfml language reference
Table of Contents

Advertisement

Chapter 2: ColdFusion Functions

ListChangeDelims

Returns list with all delimiter characters changed to new_delimiter string.
See also
Syntax
ListChangeDelims( list , new_delimiter [, delimiters ])
list
List of delimiters being changed.
new_delimiter
String being used as a new delimiter.
delimiters
Set of delimiters used in list.
Examples
<!--- This example shows ListChangeDelims --->
<HTML>
<HEAD>
<TITLE>ListChangeDelims Example</TITLE>
</HEAD>
<BODY>
<H3>ListChangeDelims Example</H3>
<P>ListChangeDelims allows you to change the delimiters
used in a list.
<!--- First, query to get some values for our list --->
<CFQUERY NAME="GetParkInfo" DATASOURCE="cfsnippets">
SELECT PARKNAME,CITY,STATE
FROMPARKS
WHEREPARKNAME LIKE 'BA%'
</CFQUERY>
<CFSET temp = #ValueList(GetParkInfo.ParkName)#>
<CFOUTPUT>
<P>The original list: #temp#
</CFOUTPUT>
<!--- now, change the delimiters in the list from "," to
"|:P|"--->
<CFSET temp2 = ListChangeDelims(Temp, "|:P|", ",")>
<CFOUTPUT>
<P>The appended list: #temp2#
</CFOUTPUT>
</BODY>
</HTML>
ListFirst
and ListQualify.
409

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the COLDFUSION 4.5-CFML LANGUAGE and is the answer not in the manual?

Questions and answers

Subscribe to Our Youtube Channel

This manual is also suitable for:

Coldfusion 4.5

Table of Contents