Carriage return

Source: Wikipedia, the free encyclopedia.

A carriage return, sometimes known as a cartridge return and often shortened to CR, <CR> or return, is a

line of text. It is closely associated with the line feed and newline
concepts, although it can be considered separately in its own right.

Typewriters

Touchmaster Five with carriage return lever at left

Originally, the term "carriage return" referred to a mechanism or lever on a typewriter. For machines where the type element was fixed and the paper held in a moving carriage, this lever was on the left attached to the moving carriage, and operated after typing a line of text to cause the carriage to return to the far right so the type element would be aligned to the left side of the paper. The lever would also usually feed the paper to advance to the next line.

Many electric typewriters such as

Selectric
, where the type element moved when typing and the paper was held stationary, the key returned the type element to the far left and the term "carrier return" was sometimes used for this function.

To improve the keyboard for non-English-speakers, the symbol ↵ (

HTML entity
&crarr;) was introduced to communicate the combined carriage return and line feed action.

Computers

In

line feed (LF), a move to the next line, so that together they start a new line. Together, this sequence can be referred to as CRLF.[1]

The carriage return and line feed functions were split for practical reasons:

As early as 1901, Baudot code contained separate carriage return and line feed characters.

Many computer programs use the carriage return character, alone or with a line feed, to signal the end of a line of text, but other characters are also used for this function (see

whitespace
.

In both ASCII and Unicode, the carriage return is assigned code point 13 (or 0D in hexadecimal); it may also be seen as control+M or ^M. In character and string constants in the C programming language and in many other languages (including representations of regular expressions[2][3]) influenced by C, \r denotes this character.[4]

See also

References

  1. ^ "CRLF". MDN Web Docs. Archived from the original on 2024-03-04. Retrieved 2024-03-04.
  2. ^ "Regular expression syntax reference". JetBrains. Archived from the original on 2023-10-03. Retrieved 2024-03-04.
  3. ^ Jan Goyvaerts. "Regular Expressions Quick Start". regular-expressions.info. Archived from the original on 2024-02-21. Retrieved 2024-03-04.
  4. ^ Eric S. Roberts (1995). The Art and Science of C. Addison-Wesley. p. 311.

External links