S
Stuart Clarke
Hi all,
This might be a stupid question.
I have an array which gets data added to in a loop like so:
a b c d e f
a b c d e f
I am aware calling join("\n")on this array will separate each line of
the array with a new line, but I want to separate the individual items
and load them into there own arrays for example
array a = a, a
array b = b, b
etc etc.
In summary I want to output my data exactly how it is, but because I
want to load into structured columns on my GUI I want the data broken
down so it can be loaded to the relevant columns.
Thanks in advance
This might be a stupid question.
I have an array which gets data added to in a loop like so:
a b c d e f
a b c d e f
I am aware calling join("\n")on this array will separate each line of
the array with a new line, but I want to separate the individual items
and load them into there own arrays for example
array a = a, a
array b = b, b
etc etc.
In summary I want to output my data exactly how it is, but because I
want to load into structured columns on my GUI I want the data broken
down so it can be loaded to the relevant columns.
Thanks in advance