Files
RCBASIC4/doc/doc_files/escape_char.html
2024-10-27 11:52:28 -04:00

59 lines
1.7 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<meta content="text/html; charset=UTF-8" http-equiv="content-type">
<title>RC BASIC Escape Characters</title>
</head>
<body>
<table style="width: 100%" border="1">
<tbody>
<tr>
<td>ESCAPE CHARACTER</td>
<td>DESCRIPTION</td>
</tr>
<tr>
<td style="width: 190.467px; text-align: center;">\\</td>
<td style="width: 590.45px;">INSERTS A "\" INTO A STRING</td>
</tr>
<tr>
<td style="text-align: center;">\n</td>
<td>INSERTS A NEW-LINE INTO A STRING</td>
</tr>
<tr>
<td style="text-align: center;">\b</td>
<td>INSERTS A BACKSPACE INTO A STRING</td>
</tr>
<tr>
<td style="text-align: center;">\" &nbsp; | &nbsp; \q</td>
<td>INSERTS A QUOTATION MARK INTO A STRING</td>
</tr>
<tr>
<td style="text-align: center;">\t</td>
<td>INSERTS A TAB INTO A STRING</td>
</tr>
<tr>
<td style="text-align: center;">\0</td>
<td>INSERTS A NULL CHARACTER INTO A STRING</td>
</tr>
<tr>
<td style="text-align: center;">\a</td>
<td>INSERTS AN ALERT BELL INTO A STRING</td>
</tr>
<tr>
<td style="text-align: center;">\v</td>
<td>INSERTS A VERTICAL TAB INTO A STRING</td>
</tr>
<tr>
<td style="text-align: center;">\f</td>
<td>INSERTS A FORM FEED INTO A STRING</td>
</tr>
<tr>
<td style="text-align: center;">\r</td>
<td>INSERTS A CARRIAGE RETURN</td>
</tr>
</tbody>
</table>
</body>
</html>