Line Feed

  • Thread starter Thread starter LIN
  • Start date Start date
L

LIN

I am trying to parse a log file which is created by an Apache Web Server - I
am not sure what do you use to read the Line Feed - example for most of the
other files i use "\n" but i am not sure what represents a Line Feed.

Ideas Please.

Thank you,

LIN
 
check out the class System.IO.StreamReader
it has a ReadLine() method...

dominique
 
* "LIN said:
I am trying to parse a log file which is created by an Apache Web Server - I
am not sure what do you use to read the Line Feed - example for most of the
other files i use "\n" but i am not sure what represents a Line Feed.

Have a look at the constants in 'ControlChars'.
 
Back
Top