You are making it too complicated, just use the ListChangeDelims()
function.

<CFSET l="dir1 dir2 dir3 dir4 dir5">

<CFOUTPUT>
#ListChangeDelims(l, ",", " ")#
</CFOUTPUT>



-----Original Message-----
From: FlashGuy [mailto:flashmx@;rogers.com] 
Sent: Monday, November 04, 2002 11:24 AM
To: CF-Talk
Subject: Replace in string


Hi,

I need to output the results as a comma-delimited string. An example of
the output from the below code would be like:

dir1 dir2 dir3 dir4 dir5

I would like to have:

dir1,dir2,dir3,dir4,dir5

Whats wrong with my below syntax?


<cfdirectory action="LIST" directory="d:\books" name="DirList"
sort="name ASC">

<cfoutput query="DirList">
  <cfif left(DirList.name,1) neq ".">
    #ListGetAt(Replace(DirList.name," ",",","ALL"),1,',')#
  </cfif>
</cfoutput>




---------------------------------------------------
Colonel Nathan R. Jessop
Commanding Officer
Marine Ground Forces
Guatanamo Bay, Cuba
---------------------------------------------------




~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Reply via email to