Concatenation operation
You can use concatenation operation ("+") to attach one string to another. The length of the resulting string is equal to the sum of lengths of the source strings. If the data type of the second or later operands is not string, their values are converted to string type in accordance with the type conversion rules.
Example:
FullName = FirstName + " " + MiddleName + " " + LastName;