Difference between revisions of "End of Line"

From Lazarus wiki
Jump to navigationJump to search
Line 1: Line 1:
* A unix line ending is [[Line feed]] (LF, #10 )  
+
LineEnding is end of line marker. This constant (system unit) is used when writing end of lines to text files.
* windows line ending is [[Carriage return]] + [[Line feed]] (CRLF #13#10).
 
* Native Macinstosh files have [[Carriage return]] (CR #13) as line ending.
 
  
 +
== End of line markers ==
  
* LineEnding is end of line marker. This constant (system unit) is used when writing end of lines to text files.
+
* [[Line feed]] (LF, #10 ) Linux, Unix ...
 +
* [[Carriage return]] + [[Line feed]] (CRLF #13#10) MS windows
 +
* [[Carriage return]] (CR #13) Native Macinstosh files.

Revision as of 13:04, 22 July 2007

LineEnding is end of line marker. This constant (system unit) is used when writing end of lines to text files.

End of line markers