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
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Reply via email to