Parsing a CSV file having multiple records in RUBY

Hi everyone,
Can anyone help me in parsing a CSV file,with comma seperated multiple
records (multiple columns and multiple rows)…

Can anyone solve my problem,Its urgent

On 12/26/06, Krishna M. [email protected] wrote:

Hi everyone,
Can anyone help me in parsing a CSV file,with comma seperated multiple
records (multiple columns and multiple rows)…

http://ruby-doc.org/stdlib/libdoc/csv/rdoc/index.html

http://rubyforge.org/projects/fastercsv/

Krishna M. wrote:

Hi everyone,
Can anyone help me in parsing a CSV file,with comma seperated multiple
records (multiple columns and multiple rows)…

Can anyone solve my problem,Its urgent

require ‘faster_csv’

FCSV.foreach(‘myfile.csv’) do |row|
#work with row here
end