How to read the prevous line of a file. The opposite of IO.gets.I initially thought to set IO.lineno to the line number I wanted to read but that doesn't work as expect. How do you actually read the previous line?
feedback
|
|
One simple way is to remember the previous line you read:
| |||
|
feedback
|
|
There are a couple of ways, it depends on how much information you have at your disposal. If you know the length of the last line you read in you can take the easiest approach which would be
Of course, if you are not provided that information things become a little less nice. You could use the same approach as above to walk backwards (one byte at a time) until you hit a newline marker or take
However, as far as I know, there is no direct mechanism to just As an aside, you should know that while you can write to | |||
|
feedback
|
|
The Elif gem has a gets method that is the opposite of IO.gets.
| |||
|
feedback
|
|
Saw an excellent suggestion on comp.lang.ruby -- use IO.tell to keep track of the position of each line in the file so you can seek directly to it:
| |||
|
feedback
|