strcat
strcat(S_string1[S_string2... ] ) =>t_result
Description
Takes input strings or symbols and concatenates them.
Arguments
Value Returned
|
New string containing the contents of all input strings or symbols S_string1, S_string2, ..., concatenated together. The input arguments are left unchanged. |
Examples
strcat( 'ab "xyz" )
=> "abxyz"
strcat( "l" "ab" "ef" )
=> "labef"
Related Topics
Return to top