June 2018 Update
This commit is contained in:
parent
ba8067c3b7
commit
22f33d4004
5278 changed files with 84726 additions and 14379 deletions
9
Task/Binary-strings/VBA/binary-strings-10.vba
Normal file
9
Task/Binary-strings/VBA/binary-strings-10.vba
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
Sub Join_Strings()
|
||||
Dim A$, B As String
|
||||
|
||||
A = "Hello"
|
||||
B = "world"
|
||||
Debug.Print A & " " & B 'return : Hello world
|
||||
'If you're sure that A and B are Strings, you can use + instead of & :
|
||||
Debug.Print A + " " + B 'return : Hello world
|
||||
End Sub
|
||||
Loading…
Add table
Add a link
Reference in a new issue