12-26-2012 02:22 AM
Hi all
I have txt file the include some number as string
4
2
6
1
5
7
8
3
0
9
who can I gather these number to Integer array
attach txt file the include the numbers
Thanks
12-26-2012 02:59 AM
Read it as a string, then use "spreadsheet string to array with a type=1D I32 array, delimiter=newline, and format=%d.
You can also use "read from spreadsheet file, select integer, set transpose=true, and get only the first row (which will be the first column, since you are transposing).
12-26-2012 03:51 AM
This might solve your purpose.
Thanks
Pankaj
12-26-2012 04:16 AM
thanks a lot