Concatenation (&) - operator of language VBScript
Description:
Used to force string concatenation of two expressions.
Syntax:
result = expression1 & expression2
Note:
If expression1 or expression2 is not a string, then it is converted to the value of the String type.
Example:
Select and copy to clipboard
Dim sFirm, sPhone
sFirm = "Firm:" & Chr(9) & "MICROSYS"
sPhone = "Phone:" & Chr(9) & "+420 596 614 302"
Pm.Debug sFirm & Chr(13) & sPhone