From: James Britt Date: 2005-01-31T08:53:38+09:00 Subject: Re: Read CSV-File (Comma Separated Values) Stefan Lang wrote: > James Britt wrote: > > >>You might do better to leave the hard work to ruby: >> >>IO.readlines( 'filename' ).each{ |line| >>ary_values� =� line.split(,) > > ^^^ > Shouldn't there be quotes around the comma? > line.split(',') Or regexp slashes, which is what I used, and which is what appears when I view my post in my E-mail reader (Thunderbird). line.split(/,/) Odd. James