Examples: Join function



Dim wordArray(1 to 2) As String
wordArray(1) = "hello"
wordArray(2) = "world"
Phrase = Join(wordArray)
Print Phrase		' prints "hello world"

Additional Documentation | Trademarks |