blob: 88e6dcfcda8006d041d6d816ce3e53d9a024f6cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
---
title: CRLF
slug: Glossary/CRLF
translation_of: Glossary/CRLF
---
<p>回车符(CR)和换行符(LF)是文本文件用于标记换行的控制字符(<a href="https://en.wikipedia.org/wiki/Control_character">control characters</a>)或字节码(<a href="https://en.wikipedia.org/wiki/Bytecode">bytecode</a>)。</p>
<ul>
<li>CR = <strong>Carriage Return</strong>,回车符号(<code>\r</code>,十六进制 ascii 码为<code>0x0D</code>,十进制 ascii 码为13),用于将鼠标移动到行首,并不前进至下一行。</li>
<li>LF = <strong>Line Feed</strong>,换行符号( <code>\n</code>, 十六进制 ascii 码为 <code>0x0A</code>,十进制 ascii 码为10)。</li>
</ul>
<p>紧邻的 CR 和 LF(组成 CRLF,<code>\r\n</code>,或十六进制 <code>0x0D0A</code>)将鼠标移动到下一行行首。(Windows 操作系统默认的文本换行符为 CRLF;Linux 以及 macOS 系统默认使用 LF,早期的 mac os 系统使用 CR 换行。)</p>
<h2 id="相关链接Edit">相关链接<a class="button section-edit only-icon" href="https://developer.mozilla.org/en-US/docs/Glossary/Smoke_Test$edit#Learn_more"><span>Edit</span></a></h2>
<h3 id="General_knowledge">General knowledge</h3>
<ul>
<li>{{interwiki("Newline")}} on Wikipedia</li>
<li>{{interwiki("Carriage return")}} on Wikipedia</li>
</ul>
|