On Mar 16, 2007, at 8:47 AM, Jan Friedrich wrote: > Andrew Stewart wrote: >>> What's a (good) way to convert this: >> >> 'a quick "brown fox" jumped "over the lazy" dog' >> >> into this: >> >> [ 'a', 'quick', 'brown fox', 'jumped', 'over the lazy', 'dog' ] ? > > > require 'csv' > CSV.parse_line('a quick "brown fox" jumped "over the lazy" dog', ' ') Wow, that's mighty clever. I didn't even think of trying that. Nice job. James Edward Gray II