Simply... how do I turn a list of items such as
one
two
three
four
five
into
one, two, three, four, five
in an expression or loop
Printable View
Simply... how do I turn a list of items such as
one
two
three
four
five
into
one, two, three, four, five
in an expression or loop
Well, start a fastloop "listloop" ListNbLines("List object") times
then on that loop: Set alterable string of "String" to string$("String")+ListGetAt$("List object"), loopindex("listloop"))+", "
(I think it's ListGetAt$ , but it might be ListLine$ or something. Just use the dialog to find out :) )
ill give that one a shot, if any problems exist ill come back and complain. lol.
turned out to be
string$( "ListFormat" )+List Line Text$( "List", LoopIndex("listloop"))+","
Ah yes, List Line Text$() ;)
Glad to help :)