fileStream := ... stream on the ascii file...

[ fileStream atEnd ] whileFalse: [
� � str := fileStream upTo: Character cr .
� � ... ]


upTo: Character lf or upToAll: String crlf �as per OS.. or make it even more generic to work across all OS ...


On Tue, Jul 31, 2012 at 10:00 PM, Paul DeBruicker <pdebruic@gmail.com> wrote:
Sorry forgot to mention I'm using Pharo 1.3 on linux.