Next: Strings, Previous: Numbers, Up: Simple Data Types
Most of the characters in the ASCII character set may be referred to by
name: for example, #\tab, #\esc, #\stx, and so on.
The following table describes the ASCII names for each character.
0 = #\nul
| 1 = #\soh
| 2 = #\stx
| 3 = #\etx
|
4 = #\eot
| 5 = #\enq
| 6 = #\ack
| 7 = #\bel
|
8 = #\bs
| 9 = #\ht
| 10 = #\nl
| 11 = #\vt
|
12 = #\np
| 13 = #\cr
| 14 = #\so
| 15 = #\si
|
16 = #\dle
| 17 = #\dc1
| 18 = #\dc2
| 19 = #\dc3
|
20 = #\dc4
| 21 = #\nak
| 22 = #\syn
| 23 = #\etb
|
24 = #\can
| 25 = #\em
| 26 = #\sub
| 27 = #\esc
|
28 = #\fs
| 29 = #\gs
| 30 = #\rs
| 31 = #\us
|
32 = #\sp
|
The delete character (octal 177) may be referred to with the name
#\del.
Several characters have more than one name:
| Alias | Original
|
#\space | #\sp
|
#\newline | #\nl
|
#\tab | #\ht
|
#\backspace | #\bs
|
#\return | #\cr
|
#\page | #\np
|
#\null | #\nul
|
Return
#tiff x is the same character as y, else#f.
Return
#tiff x is less than y in the ASCII sequence, else#f.
Return
#tiff x is less than or equal to y in the ASCII sequence, else#f.
Return
#tiff x is greater than y in the ASCII sequence, else#f.
Return
#tiff x is greater than or equal to y in the ASCII sequence, else#f.
Return
#tiff x is the same character as y ignoring case, else#f.
Return
#tiff x is less than y in the ASCII sequence ignoring case, else#f.
Return
#tiff x is less than or equal to y in the ASCII sequence ignoring case, else#f.
Return
#tiff x is greater than y in the ASCII sequence ignoring case, else#f.
Return
#tiff x is greater than or equal to y in the ASCII sequence ignoring case, else#f.
Return
#tiff chr is alphabetic, else#f. Alphabetic means the same thing as theisalphaC library function.
Return
#tiff chr is numeric, else#f. Numeric means the same thing as theisdigitC library function.
Return
#tiff chr is whitespace, else#f. Whitespace means the same thing as theisspaceC library function.
Return
#tiff chr is uppercase, else#f. Uppercase means the same thing as theisupperC library function.
Return
#tiff chr is lowercase, else#f. Lowercase means the same thing as theislowerC library function.
Return
#tiff chr is either uppercase or lowercase, else#f. Uppercase and lowercase are as defined by theisupperandislowerC library functions.
Return the number corresponding to ordinal position of chr in the ASCII sequence.
Return the character at position n in the ASCII sequence.
Return the uppercase character version of chr.
Return the lowercase character version of chr.
See Classification of Characters, for information about the is* Standard C functions
mentioned above.