does it have to be just one line?  you can loop for the array length and do
a list append...

<cfset myList = "" />
<cfloop from="1" to="#arrayLen(myArray)#" index="idx">
     <cfset myList = listAppend(myList, 'VarChar') />
</cfloop>

On Wed, Jul 29, 2009 at 9:27 AM, Richard White <[email protected]> wrote:

>
> hi
>
> we need to create a list of the string VarChar i.e.
> "VarChar,VarChar,VarChar"
>
> the amount of list elements is totally dependant on the length of another
> array which could change.
>
> e.g. if theArray length is 3 then the list would be
> "VarChar,VarChar,VarChar" else if theArray length is 5 then the list would
> be "VarChar,VarChar,VarChar,VarChar,VarChar" etc...
>
> is there a function to do this in a line of code
>
> thanks
>
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325079
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