Am 18.09.2014 um 10:28 schrieb Sven Van Caekenberghe <sven@stfx.eu>:

Hi,

Today I came across some bash code on a web page that loves Smalltalk, ah the horror ;-)

 http://car.mines-douai.fr/2014/09/csv2html/

The goal is to make it easier to look at CSV data, for which a conversion to HTML was done. To just look at CSV data in a nice tabular form, we do not have to leave Pharo at all.

MultiColumnListModel new 
  items: (FileLocator desktop / 'test.csv' readStreamDo: [ :in | 
            (NeoCSVReader on: in) emptyFieldValue: ''; upToEnd ]);
What version of NeoCSV has >>emptyFieldValue:?
(And where can I get it?)
I haven�t seen this method yet�

Regards,
Andreas