Notifications
Clear all

[Closed] Long array to string question

 ILS

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
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

 ILS

thanks that did the trick.