I'm perplexed over what ought to be a simple CSV question: can you ask
CSV to strip whitespace from individual cells as it reads? The
following works, but is it the approved idiom?
CSV.parse(s).each {|row| row.each {|col| col.strip!}}
- ff
--
Posted via http://www.ruby-forum.com/.