I have to read a sql code. I saw a key at the first lines. It was "crlf".
Why they write that, anybody know?
I have to read a sql code. I saw a key at the first lines. It was "crlf".
Why they write that, anybody know?
CR
is the carriage return.LF
is the line feed.CR LF
sequence is used in Windows. Unix only uses LF
. In Macintosh OS prior to Mac OS X CR
was used.
Please refer the answer to Difference between CR LF, LF and CR line break types? for more answers and details on the same.