A character is simply an object in GAP that represents an arbitrary
character from the character set of the operating system. Character
literals can be entered in GAP by enclosing the character in
singlequotes '
.
gap> 'a'; 'a' gap> '*'; '*'
A string is simply a dense list of characters. Strings are used mainly
in filenames and error messages. A string literal can either be entered
simply as the list of characters or by writing the characters between
doublequotes "
. GAP will always output strings in the latter
format.
gap> s1 := ['H','a','l','l','o',' ','w','o','r','l','d','.']; "Hallo world." gap> s2 := "Hallo world."; "Hallo world." gap> s1 = s2; true gap> s3 := ""; "" # the empty string gap> s3 = []; true
Note that a string is just a special case of a list. So everything that is possible for lists (see Lists) is also possible for strings. Thus you can access the characters in such a string (see List Elements), test for membership (see In), etc. You can even assign to such a string (see List Assignment). Of course unless you assign a character in such a way that the list stays dense, the resulting list will no longer be a string.
gap> Length( s2 ); 12 gap> s2[2]; 'a' gap> 'e' in s2; false gap> s2[2] := 'e';; s2; "Hello world."
If a string is displayed as result of an evaluation (see Main Loop), it
is displayed with enclosing doublequotes. However, if a string is
displayed by Print
, PrintTo
, or AppendTo
(see Print, PrintTo,
AppendTo) the enclosing doublequotes are dropped.
gap> s2; "Hello world." gap> Print( s2 ); Hello world.gap>
There are a number of special character sequences that can be used between the single quote of a character literal or between the doublequotes of a string literal to specify characters, which may otherwise be inaccessible. They consist of two characters. The first is a backslash \ . The second may be any character. The meaning is given in the following list
n
:
"
:
'
:
b
:
r
:
c
:
Again, if the line is displayed as result of an evaluation, those escape
sequences are displayed in the same way that they are input. They are
displayed in their special way only by Print
, PrintTo
, or AppendTo
.
gap> "This is one line.\nThis is another line.\n"; "This is one line.\nThis is another line.\n" gap> Print( last ); This is one line. This is another line.
It is not allowed to enclose a newline inside the string. You can use the special character sequence \ n to write strings that include newline characters. If, however, a string is too long to fit on a single line it is possible to continue it over several lines. In this case the last character of each line, except the last must be a backslash. Both backslash and newline are thrown away. Note that the same continuation mechanism is available for identifiers and integers.
gap> "This is a very long string that does not fit on a line \ gap> and is therefore continued on the next line."; "This is a very long string that does not fit on a line and is therefo\ re continued on the next line." # note that the output is also continued, but at a different place
This chapter contains sections describing the function that creates the printable representation of a string (see String), the functions that create new strings (see ConcatenationString, SubString), the functions that tests if an object is a string (see IsString), the string comparisons (see Comparisons of Strings), and the function that returns the length of a string (see LengthString).
String( obj )
String( obj, length )
String
returns a representation of the obj, which may be an object of
arbitrary type, as a string. This string should approximate as closely
as possible the character sequence you see if you print obj.
If length is given it must be an integer. The absolute value gives the minimal length of the result. If the string representation of obj takes less than that many characters it is filled with blanks. If length is positive it is filled on the left, if length is negative it is filled on the right.
gap> String( 123 ); "123" gap> String( [1,2,3] ); "[ 1, 2, 3 ]" gap> String( 123, 10 ); " 123" gap> String( 123, -10 ); "123 " gap> String( 123, 2 ); "123"
ConcatenationString( string1, string2 )
ConcatenationString
returns the concatenation of the two strings
string1 and string2. This is a new string that starts with the
characters of string1 and ends with the characters of string2.
gap> ConcatenationString( "Hello ", "world.\n" ); "Hello world.\n"
Because strings are now lists, Concatenation
(see Concatenation) does
exactly the right thing, and the function ConcatenationString
is
obsolete.
SubString( string, from, to )
SubString
returns the substring of the string string that begins at
position from and continues to position to. The characters at these
two positions are included. Indexing is done with origin 1, i.e., the
first character is at position 1. from and to must be integers and
are both silently forced into the range 1..LengthString(string)
(see
LengthString). If to is less than from the substring is empty.
gap> SubString( "Hello world.\n", 1, 5 ); "Hello" gap> SubString( "Hello world.\n", 5, 1 ); ""
Because strings are now lists, substrings can also be extracted with
string{[from..to]}
(see List Elements). SubString
forces
from and to into the range 1..Length(string)
, which the above
does not, but apart from that SubString
is obsolete.
string1 = string2
, string1 < string2
The equality operator =
evaluates to true
if the two strings
string1 and string2 are equal and false
otherwise. The inequality
operator <
returns true
if the two strings string1 and string2
are not equal and false
otherwise.
gap> "Hello world.\n" = "Hello world.\n"; true gap> "Hello World.\n" = "Hello world.\n"; false # string comparison is case sensitive gap> "Hello world." = "Hello world.\n"; false # the first string has no <newline> gap> "Goodbye world.\n" = "Hello world.\n"; false gap> [ 'a', 'b' ] = "ab"; true
string1 < string2
, string1 <= string2
,
string1 string2
, string1 = string2
The operators <
, <=
, , and
=
evaluate to true
if the string
string1 is less than, less than or equal to, greater than, greater than
or equal to the string string2 respectively. The ordering of strings
is lexicographically according to the order implied by the underlying,
system dependent, character set.
You can also compare objects of other types, for example integers or permutations with strings. As strings are dense character lists they compare with other objects as lists do, i.e., they are never equal to those objects, records (see Records) are greater than strings, and objects of every other type are smaller than strings.
gap> "Hello world.\n" < "Hello world.\n"; false # the strings are equal gap> "Hello World.\n" < "Hello world.\n"; true # in ASCII uppercase letters come before lowercase letters gap> "Hello world." < "Hello world.\n"; true # prefixes are always smaller gap> "Goodbye world.\n" < "Hello world.\n"; true # 'G' comes before 'H', in ASCII at least
IsString( obj )
IsString
returns true
if the object obj, which may be an object of
arbitrary type, is a string and false
otherwise. Will cause an error
if obj is an unbound variable.
gap> IsString( "Hello world.\n" ); true gap> IsString( "123" ); true gap> IsString( 123 ); false gap> IsString( [ '1', '2', '3' ] ); true gap> IsString( [ '1', '2', , '4' ] ); false # strings must be dense gap> IsString( [ '1', '2', 3 ] ); false # strings must only contain characters
LengthString( string )
LengthString
returns the length of the string string. The length of
a string is the number of characters in the string. Escape sequences
(see Strings and Characters) are just a two character representation
for a single character, and are thus counted as single character by
LengthString
.
gap> LengthString( "" ); 0 gap> LengthString( "Hello" ); 5 gap> LengthString( "Hello world.\n" ); 13
Because strings are now lists, Length
(see Length) does exactly the
right thing, and the function LengthString
is obsolete.
GAP 3.4.4