Notifications
Clear all
[Closed] Long array to string question
Feb 24, 2010 10:37 pm
Hi,
I’m trying to convert a long array to a string, but what I get is an abbreviated version of the array that looks something like this “#(a,b,c,d,e,f,…)” instead of actually having all the entries I get the “…” after several of them. Is there a way convert the array to a string with all the entries. Currently I’m using the “as string” to convert. Any help would be appreciated. Thanks.
2 Replies
Feb 24, 2010 10:37 pm
options.printAllElements = true
Print ((for i = 1 to 100 collect i)as string)
or
with printAllElements true Print ((for i = 1 to 100 collect i)as string)
try that