diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:41:15 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:41:15 -0500 |
commit | 4b1a9203c547c019fc5398082ae19a3f3d4c3efe (patch) | |
tree | d4a40e13ceeb9f85479605110a76e7a4d5f3b56b /files/de/glossary/crlf | |
parent | 33058f2b292b3a581333bdfb21b8f671898c5060 (diff) | |
download | translated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.tar.gz translated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.tar.bz2 translated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.zip |
initial commit
Diffstat (limited to 'files/de/glossary/crlf')
-rw-r--r-- | files/de/glossary/crlf/index.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/files/de/glossary/crlf/index.html b/files/de/glossary/crlf/index.html new file mode 100644 index 0000000000..5bb1e1012e --- /dev/null +++ b/files/de/glossary/crlf/index.html @@ -0,0 +1,30 @@ +--- +title: CRLF +slug: Glossary/CRLF +tags: + - CR + - CRLF + - Glossar + - Infrastructure + - LF + - Wagenrücklauf + - Zeilenvorschub +translation_of: Glossary/CRLF +--- +<p>CR und LF sind <a href="https://de.wikipedia.org/wiki/Steuerzeichen">Steuerzeichen</a> oder <a href="https://en.wikipedia.org/wiki/Bytecode">Bytecode</a>, die benutzt werden, um einen Zeilenumbruch in einer Textdatei darzustellen.</p> + +<ul> + <li>CR = <strong>Carriage Return</strong> (Wagenrücklauf, <code>\r</code>, <code>0x0D</code> in Hexadezimaldarstellung, 13 in Dezimaldarstellung) — bewegt den Cursor an den Beginn einer Zeile, ohne eine in die nächste Zeile vorzurücken.</li> + <li>LF = <strong>Line Feed </strong>(Zeilenvorschub, <code>\n</code>, <code>0x0A</code> in Hexadezimaldarstellung, 10 in Dezimaldarstellung)<strong> </strong>—<strong> </strong>bewegt den Cursor in die nächste Zeile, ohne an den Beginn der Zeile zurückzukehren.</li> +</ul> + +<p>Ein Wagenrücklauf (CR), auf den ein Zeilenvorschub (LF) direkt folgt (CRLF, <code>\r\n</code>, oder <code>0x0D0A</code>) bewegt den Cursor in die nächste Zeile und danach an den Beginn der Zeile.</p> + +<h2 id="Mehr_dazuEdit">Mehr dazu<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="Allgemeinwissen">Allgemeinwissen</h3> + +<ul> + <li>{{interwiki("Newline")}} bei Wikipedia</li> + <li>{{interwiki("Carriage return")}} bei Wikipedia</li> +</ul> |