From: Justin To on
Hi, just wondering how I would skip the first line of a file?

File.open('file.txt', 'r').each do |line|
# start on the 2nd line
end

Thanks!
--
Posted via http://www.ruby-forum.com/.

From: Justin To on
Thanks, helps a lot. How about if I am using FasterCSV?

require 'fastercsv'



File.open("file.txt', 'r') do |file|
file.readline
FasterCSV.foreach("#{file}") do |row|

end

end

Invalid argument #<file...>

Mmm... not sure how I would do it then! =)

Thanks
--
Posted via http://www.ruby-forum.com/.

From: Justin To on
Terrific, thanks so much!
--
Posted via http://www.ruby-forum.com/.