Character classes are written [:space:] [:alnum:] etc.
The pep the c language implementation of the parse machine and language uses
plain ctype.h
character classes as a way of grouping characters.
Character classes are uses in tests before blocks
These classes are important in a Unicode setting because they allow
specifying types of characters in a locale-neutral way. The while
and whilenot
commands can use character classes as their argument.
r; ![:alnum:] { add " not alpha-numeric! \n"; print; } clear;
while [:space:];