views:

169

answers:

8

They both mean "new line" but when is one used over the other?

+1  A: 

'\n' is the default in Unix, '\r\n' is the default in Windows.

Thomas Mueller
+12  A: 

\r\n is a Windows Style

\n is a POSIX Style

\r is a old pre-OS X Macs Style, Modern Mac's using POSIX Style.


\r is a carrige return and \n is a line feed, in old computers where it not have monitor, have only printer to get out programs result to user, if you want get printing from staring of new line from left, you must get \n for Line Feed, and \r for get Carriage return to the most left position, this is from old computers syntax saved to this time on Windows platform.

Svisstack
Note that `\r` is only "Mac Style" for pre-OS X Macs. Modern Macs use POSIX style, as they are ultimately based on a BSD derivative.
Tyler McHenry
@Tyler McHenry: thanks for review, updated!;-)
Svisstack
+2  A: 

\n is a newline only, \r\n is a newline and a carriage return (i.e. move the cursor to the left).

Jackson Pope
+1  A: 

Different Operating Systems handle newlines in a different way. Here is a short list of the most common ones: DOS and Windows

They expect a newline to be the combination of two characters, namely '\r\n' (or 13 followed by 10).

Unix (and hence Linux as well)

Unix uses a single '\n' to indicate a new line.

Mac

Macs use a single '\r'.

so this causes problems when u port your app from windows to mac when u're using folder path's and alike.

Emerion
A: 

The difference is between different operating systems, on Windows, the newline character is \r\n while on Linux it is just \n Mac OSX has just \r its really just a matter of what the designers of the OS made it to be

Richard J. Ross III
A: 

\n means new line. It means that the cursor must go to the next line.

\r means carriage return. It means that the cursor should go back to the beginning of the line.

Unix and Unix programs usually only needs a new line (\n).

Windows and Windows programs usually need both.

Silence
+1  A: 

This is how new line is represented in operating systems Windows (\r\n)and linux (\n)

On Unix the \r is a Carriage Return (CR) and the \n a Line Feed (LF) which together happen to be the be Windows newline identifier and you are replacing them with a Unix newline identifier.

On Windows the \r is a CR, too, but the \n is a combination of CR and LF. So effectively you are trying to replace CR+CR+LF with CR+LF. Doesn't make much sense, does it.

From "perldoc perlop": All systems use the virtual ""\n"" to represent a line terminator, called a "newline". There is no such thing as an unvarying, physical newline character. It is only an illusion that the operating system, device drivers, C libraries, and Perl all conspire to preserve. Not all systems read ""\r"" as ASCII CR and ""\n"" as ASCII LF. For example, on a Mac, these are reversed, and on systems without line terminator, printing ""\n"" may emit no actual data. In general, use ""\n"" when you mean a "newline" for your system, but use the literal ASCII when you need an exact character. For example, most networking protocols expect and prefer a CR+LF (""\015\012"" or ""\cM\cJ"") for line terminators, and although they often accept just ""\012"", they seldom tolerate just ""\015"". If you get in the habit of using ""\n"" for networking, you may be burned some day.

Andriy Sholokh
A: 

In C#, you can just use Environment.NewLine

Rezler
Ironically, although this is the usage preferred over "\n" or "\r\n" (at least in DOT NET), it doesn't actually answer the original question.
mickeyf