Difference between revisions of "End of Line"

From Free Pascal wiki
Jump to navigationJump to search
m (→‎End of line markers: OS X -> macOS)
 
(14 intermediate revisions by 7 users not shown)
Line 1: Line 1:
* A unix line ending is [[Line feed]] (LF, #10 )
+
{{End of Line}}
* windows line ending is [[Carriage return]] + [[Line feed]] (CRLF #13#10).
 
* Native Macinstosh files have [[Carriage return]] (CR #13) as line ending.
 
  
 +
<tt>LineEnding</tt> is end of line marker. This [[Constant|constant]] ([[System unit|system unit]]) is used when writing end of lines to text files. In other words, it starts a new line.
  
* LineEnding is end of line marker. This constant (system unit) is used when writing end of lines to text files.
+
== End of line markers ==
 +
 
 +
(Better/also known as line ending characters)
 +
 
 +
* [[Line feed]] (LF, #10 ):  [[Linux]], macOS, BSDs, Unix
 +
* [[Carriage return]] + [[Line feed]] (CRLF, #13#10): Microsoft Windows
 +
* [[Carriage return]] (CR, #13): Mac OS Classic
 +
 
 +
macOS often accepts [[Line feed]] and [[Carriage return]].
 +
 
 +
== See also ==
 +
 
 +
* [[doc:rtl/system/lineending.html|LineEnding]] Constant describing the current line ending character.
 +
* [[doc:rtl/system/settextlineending.html|SetTextLineEnding]] Set the end-of-line character for the given text file.
 +
* [[doc:rtl/system/slinebreak.html|sLineBreak]] is an alias for LineEnding and is supplied for compatibility.

Latest revision as of 08:31, 3 July 2020

English (en) suomi (fi) русский (ru)

LineEnding is end of line marker. This constant (system unit) is used when writing end of lines to text files. In other words, it starts a new line.

End of line markers

(Better/also known as line ending characters)

macOS often accepts Line feed and Carriage return.

See also

  • LineEnding Constant describing the current line ending character.
  • SetTextLineEnding Set the end-of-line character for the given text file.
  • sLineBreak is an alias for LineEnding and is supplied for compatibility.