Hi Andreas, On 26 Sep 2014, at 22:25, Andreas Wacknitz <a.wacknitz@gmx.de> wrote:
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â¦
It was in #bleedingEdge, I made a new #stable version of ConfigurationOfNeoCSV (v11). You can use the Configuration Browser in Pharo 3.0 or load via Gofer (the project is on StHub as well). HTH, Sven