Chapter 2: ColdFusion Functions
423
ListQualify
Returns a list with a qualifying character around each item in the list, such as double or
single quotes.
See the
List Functions
table.
Syntax
ListQualify
(
list, qualifier [, delimiters ] [, elements ])
list
Any list of items or a variable that names a list.
qualifier
The character that is to be placed at the beginning and end of each item in the list.
delimiters
Set of delimiters used in list.
elements
Either the keyword “ALL” or “CHAR.” If you specify “ALL,” the function qualifies all
items in the list. If you specify “CHAR,” the function qualifiers only items
comprised of alphabetic characters; it does not qualify numeric items.
Usage
The new list may not preserve all of the delimiters in the previous list.
Examples
<!--- This example uses ListQualify to put quotes around each
employees full name --->
<HTML>
<HEAD>
<TITLE>ListQualify Example</TITLE>
</HEAD>
<body bgcolor="#FFFFD5">
<CFQUERY NAME="GetEmployeeNames" DATASOURCE="cfsnippets">
SELECT FirstName, LastName
FROM Employees
</CFQUERY>
<H3>ListQualify Example</H3>
<P>This example uses ListQualify to place the full names of the employees
found
in the query within quotation marks.</P>
<CFSET myArray = ArrayNew(1)>
<!--- loop through the query and append these names
successively to the last element --->
<CFLOOP query="GetEmployeeNames">
Содержание COLDFUSION 4.5-CFML LANGUAGE
Страница 1: ...Allaire Corporation CFML Language Reference ColdFusion 4 5...
Страница 207: ...Chapter 1 ColdFusion Tags 183 CFCATCH CFTRY BODY HTML...
Страница 224: ...200 CFMLLanguageReference CFOUTPUT P Text within CFOUTPUT is always shown CFOUTPUT BODY HTML...
Страница 296: ...272 CFMLLanguageReference INPUT TYPE text NAME number2 BR INPUT TYPE submit NAME submit VALUE Add FORM BODY HTML...
Страница 336: ...312 CFMLLanguageReference CFIF BODY HTML...
Страница 404: ...380 CFMLLanguageReference DE It is morning CFOUTPUT P BODY HTML...
Страница 413: ...Chapter 2 ColdFusion Functions 389 Customer BalanceDue BR CFOUTPUT CFIF BODY HTML...
Страница 483: ...Chapter 2 ColdFusion Functions 459 CFOUTPUT CFLOOP BODY HTML...
Страница 557: ...Chapter 2 ColdFusion Functions 533 P CFOUTPUT Value i is employee keysToStruct i CFOUTPUT P CFLOOP CFIF BODY HTML...
Страница 584: ...560 CFMLLanguageReference...
Страница 594: ...570 CFMLLanguageReference...