vote up 0 vote down star

I assume there must be a system and language independent way to just stick the "current" EOL character into a text file, but my MSDN-fu seems to be weak today. Bonus points if there is a way to do this in a web application that will put the correct EOL character for the current client's machine's OS, not the web server's.

flag

60% accept rate

5 Answers

vote up 2 vote down check

For the bonus point:

  • Check the user-agent of the client machine, for substrings such as Windows, or Linux
  • The System.Environment.NewLine for Windows is 0x13, 0x10; in unix, it's generally 0x10 only;
  • Choose the appropriate newline string, append it to the line, and off you go
link|flag
vote up 2 vote down

System.Environment.NewLine

link|flag
vote up 1 vote down

Open the text file, seek to the end, and append Environment.NewLine.

link|flag
vote up 1 vote down

You are looking for Environment.NewLine. This will only be for your current operating system however.

link|flag
vote up 1 vote down

For server-side code I would go for TextWriter.WriteLine. Detecting the OS of the client's machine requires browser sniffing - check Request.Browser.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.