3.3. Strings

A string is a sequence of characters (whose values range from 0x01 to 0xff), stored in consecutive bytes of memory, terminated by the null character \0. Unlike symbols, strings are not unique within the system. Strings are denoted by enclosing them in double quotation marks (for example: "A string."). A string is created by any of the string functions (particularly string), or by reading a string constant in the form "A string.".

The following types of operators can be used with strings:

However, strings are normally manipulated in Gamma using the string functions (see Strings and Buffers in the Reference Manual.)