01-04-2011, 07:12 PM
(This post was last modified: 01-05-2011, 03:08 PM by UFTEnthusiast.)
Code:
Str="New York TO Goa"
'Split above string with 'TO' as delimiter
SplStr=Split(Str,"TO",-1,1)
Now SplStr is an Array with
SplStr[0]="New York" and
SplStr[1]="Goa"