Difference:
- \ R:
- full name: Carriage return (carriage is" The word car "means, A part on the printer)
-
- abbreviation: R
- ASCII code:
- action: Move the cursor to the leftmost
on the current line
- \ n:
- Full Name: New line
- Alias: Line Feed
- Abbreviation: n
- ASCII code: 10
- Action: Move the cursor down one line
how different operating systems represent "carriage return + newline" (that is, the end of a line):
- Unix, linux:\n means carriage return + line break, \ r no meaning
- Windows, dos:\r\n means carriage return + newline, order cannot be changed
- mac:\r = carriage return + line break
History:
mechanical English typing machine : on the typewriter, there is a part called "Word Car" (carriage), each input a word, "word car" on the forward one. When a line is filled, the user pushes the "word cart" to the starting position, when the typewriter will have two actions: the "word cart" (roller) rolls up a line (equivalent to the "word car" moves down one line) to begin entering the next line. These two actions together are called "carriage returns", which is equivalent to the "enter" key in the keyboard now.
Telex Typewriter:(the TTY concept under Teletype Model 33,linux/unix also comes from this) can be played 10 characters per second. But it has a problem, that is, when the line is finished, it will take 0.2 seconds to hit two characters. If there are new characters coming in this 0.2 seconds, then this character will be lost.
So, the developers think of a way to solve this problem, is to add two after each line to end the character. One is called "return", which tells the typewriter to position the printhead at the left border, and the other is called "newline", which tells the typewriter to move the paper down one line. These two actions were then abbreviated as "\ r" and "\ n".
How to use in a programming language:Because UNIX uses "\ n" to indicate the end of a line, "\ n" can be used directly in C (and other C-language inheritors, such as C + +, Java), and will be automatically converted to corresponding characters in different operating systems (for example, it will be turned into "\ r \ n" in Windows).
(original article, reprint please specify the blog from Clement-xu )
Copyright NOTICE: This article is the original article, reprint please indicate the CSDN blog which is transferred from Clement-xu.
What is the difference between \ R and \ n, how should I use it when coding?