View Single Post
  #4 (permalink)  
Old May 20th, 2005, 06:41 AM
mmcdonal mmcdonal is offline
Friend of Wrox
 
Join Date: Mar 2004
Posts: 3,069
Thanks: 0
Thanked 10 Times in 10 Posts
Default

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
Reply With Quote