Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've seen many developers use different methods to split a string by new lines, but i'm confused which is the correct: \r\n OR \n only?

share|improve this question
1  
I've never seen \n\r. It's usually \r\n if they're using two. – icktoofay Jan 28 '11 at 3:40
This really depends on the format of the file/string your are processing. – MrGlass Jan 28 '11 at 3:41
2  
There's a PHP_EOL constant available if you want to embed the native system eol character(s) into your strings. Doesn't help much if you're dealing with text that came from other systems, though. – Marc B Jan 28 '11 at 3:43

3 Answers

up vote 25 down vote accepted

\n is used for Unix systems (including Linux, and OSX).

\r\n is mainly used on Windows.

\r is used on really old Macs.

share|improve this answer
\r is sometimes used on current macs too, depending on the text editor. Most plain text editors have switched to unix style, though. – ughoavgfhw Jan 28 '11 at 3:42
Quite right. To be more specific for those who don't know, "most UNIX systems" that use \n includes Mac OS X. – Wiseguy Jan 28 '11 at 3:42
Just to be clear: really old Macs here mean programs coded for OS 9, which was declared dead on 2002. – Yuji Jan 28 '11 at 3:43
1  
For a little historical perspective, there are from the days when printers only printed characters (like a typewriter). \r is a carriage return (literally, move the printing head back to the beginning of the line), and \n is newline (move the paper up). More info here: en.wikipedia.org/wiki/Carriage_return – Chris Shain Jan 28 '11 at 3:44
1  
With further regards to the historic aspect, the reason there are two characters in order to print a "full" newline was because it took time for the print head to return to the start of the line, so just having another character that didn't require the print head itself to do anything allowed the whole system to work efficiently without any futzing about with the client having to wait and then resync after sending a newline. – Anon. Jan 28 '11 at 3:49
show 3 more comments

If you are programming in PHP, it is useful to split lines by \n and then trim() each line (provided you don't care about whitespace) to give you a "clean" line regardless.

foreach($line in explode("\n", $data))
{
    $line = trim($line);
    ...
}
share|improve this answer

For php, \n should work for you!

http://php.net/manual/en/language.types.string.php

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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