Hi,
I've got a file I need to read, but there are lots of spaces in it. However, I need to get each line as a unique string, because, the numbers' places are important.
Problem is, TextIO.read() sends the line to a container that cuts all the spaces
Is there a trick to get the line in full ?
Thx !
Answers
The container now only contains the first 100 characters of my line, and a new TextIO.read() starts directly from the next record, which lose the 50 or so remaining characters of my line !
Is there a way to make the container bigger, to get my whole line at once (roughly 135 characters) ?