From: Li Chen Date: 2008-07-22T04:13:59+09:00 Subject: read CSV file using csv library Hi all, I need to read a CSV file with csv library. And I tried the example from the library. require 'csv' CSV::Reader.parse(File.open('test.csv')) do |row| puts row # break if !row[0].is_null && row[0].data == 'stop' end Here is what I got: # ... # I wonder why I can't print out the string/row itself instead of the address of the string/row. Thanks, Li -- Posted via http://www.ruby-forum.com/.