Re: Re[2]: reading a file
- Posted by Kat <gertie at PELL.NET> Jan 03, 2002
- 433 views
On 3 Jan 2002, at 23:22, Thomas Parslow (PatRat) wrote: > > > Hi, > > > Well, it depends which environment are you using (or text was > > built). If your platform is Windows (or DOS) then you have to look > > for a CR+LF (0Dh+0Ah). If you're on Linux (Unix) then it's only LF > > (0Ah). In other hand we have Macintosh that uses only CR (0Dh) at > > line end. You should test to see what you're finding before choose > > the right algorithm. > > > Cheers! > > > -- Euler > > If the file is being read in using text mode ("r" instead of "rb" > passed to open) then all newlines will be converted to 10. What about the last line in a text file that may not end in a CR or a NL ? Kat