September 2017 Update
This commit is contained in:
parent
bba7bfd280
commit
ba8067c3b7
14570 changed files with 153136 additions and 63871 deletions
14
Task/Tokenize-a-string/BASIC/tokenize-a-string-12.basic
Normal file
14
Task/Tokenize-a-string/BASIC/tokenize-a-string-12.basic
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
Sub Main()
|
||||
Dim parseMe As String, parsed As Variant
|
||||
parseMe = "Hello,How,Are,You,Today"
|
||||
|
||||
parsed = Split(parseMe, ",")
|
||||
|
||||
Dim L0 As Long, outP As String
|
||||
outP = parsed(0)
|
||||
For L0 = 1 To UBound(parsed)
|
||||
outP = outP & "." & parsed(L0)
|
||||
Next
|
||||
|
||||
MsgBox outP
|
||||
End Sub
|
||||
Loading…
Add table
Add a link
Reference in a new issue