Convert an array into a delimited string
Convert an array into a delimited string
Rate Convert an array into a delimited string
(2(2 Vote))
' http://www.coderhq.com
'
' Paste the code below into
' the declarations of a form
Private Sub Form_Load()
Dim tmp_String
Dim tmp_Array
tmp_Array = Split("Value1 Value2 Value3 Value4 Value5", " ")
tmp_String = Join(tmp_Array, ",")
MsgBox tmp_String
End Sub
Convert an array into a delimited string Comments
No comments yet — be the first to post one!
Post a Comment