Previous: SRFI-14 Character-Set Algebra, Up: SRFI-14
In order to make the use of the character set data type and procedures useful, several predefined character set variables exist.
All lower-case characters.
All upper-case characters.
This is empty, because ASCII has no titlecase characters.
All letters, e.g. the union of char-set:lower-case and char-set:upper-case.
char-set:lower-case
char-set:upper-case
All digits.
The union of char-set:letter and char-set:digit.
char-set:letter
char-set:digit
All characters which would put ink on the paper.
The union of char-set:graphic and char-set:whitespace.
char-set:graphic
char-set:whitespace
All whitespace characters.
All horizontal whitespace characters, that is #\space and #\tab.
#\space
#\tab
The ISO control characters with the codes 0–31 and 127.
The characters !"#%&'()*,-./:;?@[\\]_{}
!"#%&'()*,-./:;?@[\\]_{}
The characters $+<=>^`|~.
$+<=>^`|~
The hexadecimal digits 0123456789abcdefABCDEF.
0123456789abcdefABCDEF
All ASCII characters.
The empty character set.
This character set contains all possible characters.