Im trying to make it work to read valuas from the first column of a text file including spaces and i cant get it done.
Right now all the values are on the first line and some of them are separated by spaces so save[0] is the first number from the first line,save[1] the second and so on.And im trying to make it work if i transpose all those values from first line to the first column.
Thanks
Well,if i open it with excel it has only column A with numbers on each row ,and sometimes there are empty cells on column A
1
2
"space"
1
3
etc
That is how i want it to be.When i made the program the values were like this:
1 2 "space" 1 3 on the first row and the program above worked with the second condiguration but not with the first configuration
Thank you.But isnt there a simple solution i mean i only want to read and store every element only from column A and thats it, it doesnt matter what i do next with that vector of elements(btw my text file is basically an excel file but saved in a format.txt).and im supposed and im trying to make it with few lines of code