Here is the example from allaire regarding cfloop:

<cfloop index = "ListElement"
   list = "John/Paul,George::Ringo"
   delimiters = ",:/">
     <cfoutput>#ListElement#</cfoutput><BR>
</cfloop>
Delimiters can be specified in any order. Consecutive delimiters are 
treated as a single delimiter; thus the two colons in the previous example 
are treated as a single delimiter between "George" and "Ringo."


Is it just me or is the fact that consecutive delimiters are treated as a 
single delimiter a major flaw?

Does anyone have a work around for this other thanscanning the file from 
byte 1 to the last byte and manipulating the data so that is does not look 
like consecutive delimiters?

kaigler



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
------------------------------------------------------------------------------
To unsubscribe, send a message to [EMAIL PROTECTED] with 
'unsubscribe' in the body or visit the list page at www.houseoffusion.com

Reply via email to