ColdFusion supports lists of lists.  It is informally called bread crumbing.

<cfset ogList = "123,45;234,67;555,98">
<cfset listPartial = ListGetAt(ogList,2,';')> <!--- This will give you
234,67 --->
<cfset listPartial2 = ListGetAt(listPartial,2,',')> <!--- This will give you
67--->

You just need to ensure that the delimters are two different types.

Teddy


On 9/14/06, Claude Schneegans <[EMAIL PROTECTED]> wrote:
>
> >>Except for 2 and 3, for which the length will be 2!  ;-)
>
> .... Well, actaully, I meant 50 and 51: chr(50) and chr(51) !
> Geee... too much wine to nite! Red wine is good for arteries, but not as
> good for thinking ;-))
>
> --
> _______________________________________
> REUSE CODE! Use custom tags;
> See http://www.contentbox.com/claude/customtags/tagstore.cfm
> (Please send any spam to this address: [EMAIL PROTECTED])
> Thanks.
>
>
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:253295
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to