Page : 1 2 3 4 5 6 7 8 9 10 11 12 13 14
Concatenation operator is used to join multiple strings into a single string.
There are two concatenation operators, + (Plus) and & (Ampersand)
There are two concatenation operators, + (Plus) and & (Ampersand)
Example
Dim str As String
Dim s1,s2 As String
S1= “MCA”
S2= “Department”
Str=s1+s2
Result will be : MCA Department
Str=s1&s2
Result will be: MCA Department