30.2 ConcatenationString

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.

Previous Up Top Next
Index

GAP 3.4.4
April 1997