Hi,
Any word?
To go the other way and split the variable strNewString back into an array, do this:
'==========
NewArray = Split(strNewString, ", ")
i = 0
Do Until i = UBound(NewArray) + 1
WScript.Echo NewArray(i)
i = i + 1
Loop
'==========
This will yield:
Test0
Test1
Test2
HTH
mmcdonal
|