Purpose
Concatenates two strings.
String concatenation adds the second string to the end of the first and returns this as a result string.
Syntax
String1 & String2
Example
Sub Main()
Dim s1 as String, s2 as String, result as String
s1 = "Hello" : s2 = "world"
result = s1 & s2
Print result 'result is assigned 'Hello world'
Print result 'prints Hello world
End Sub
|