Ok let's say I have a text file:
(0,0) = 1.0 (0,1) = 2.0 (0,2) = 3.0
(1,0) = g (1,2) = 2.0
(2,2) = hi there (2,8) = ee
(5,4) = e
(10,1) = g
Where the each part of the line is delimited by a tab.
And the coords (x,y) represents the row and column in an excel file.
so (1,2) = 2.0 would mean put the value 2.0 on row 1 column 2 in the excel file. (or i should say row 2 column 3 because it starts at (0,0) but you get what I mean.)
How would I generate a csv file
1,2,3,,,,,,
g,,2,,,,,,
,,hi there,,,,,,ee
,,,,e,,,,
,g,,,,,,,
Note there are 8 commas per line because that is the maximum column value (highlighted in red).
Sample code would be great.