From: Drew Olson Date: 2007-02-07T00:27:55+09:00 Subject: Re: Beginner questions: sorting csv files Michael Sc wrote: > Hey, > I just had another question on these csv files. Is there anyway I could > save sorted files using the fastercsv library? Thanks again for all of > the help. I am having trouble figuring out how to use the libraries. Assuming your csv file is stored as "my_array": require 'rubygems' require 'faster_csv' FCSV.open("output.csv","w") do |out| my_array.each{|row| out << row} end -- Posted via http://www.ruby-forum.com/.