Built-in string equates

The compiler also provides a set of built-in string equates, including:

Equate

Character(s)

Definition

$NUL

CHR$(0)

Null

$BEL

CHR$(7)

Bell

$BS

CHR$(8)

Back Space

$TAB

CHR$(9)

Horizontal Tab

$LF

CHR$(10)

Line Feed

$VT

CHR$(11)

Vertical Tab

$FF

CHR$(12)

Form Feed

$CR

CHR$(13)

Carriage Return

$CRLF

CHR$(13,10)

CR and LF

$EOF

CHR$(26)

End-of-File

$ESC

CHR$(27)

Escape

$SPC

CHR$(32)

Space

$DQ

CHR$(34)

Double-Quote

 

See Also

Constants and Literals

Numeric Equates

Built-in numeric equates

String Equates