String_Type strcat (String_Type a_1, ..., String_Type a_N)
The strcat function concatenates its N String_Type
arguments a_1, ... a_N together and returns the result.
strcat ("Hello", " ", "World");
produces the string "Hello World".
This function is equivalent to the binary operation a_1+...+a_N.
However, strcat is much faster making it the preferred method
to concatenate string.
- slangrtl
-
_apropos,
array_map,
create_delimited_string,
extract_element,
init_char_array,
integer,
is_list_element,
message,
pack,
putenv,
set_float_format,
sprintf,
sscanf,
string,
strjoin,
verror,
vmessage
|