Returns the concatenation of two strings.
Syntax
strcat( string1 , string2 )
string1.strcat( string2 )
Parameters
string1
|
the string to concatenate to.
|
string2
|
the string to concatenate.
|
Returns
string
|
the resultant string.
|
Example
name = firstName.strcat( lastName )
|