04-26-2012, 03:15 PM
Try this :-
Code:
str = "123 456 786"
a = split(str," ")
For i = Lbound(a) to Ubound(a)
Print a(i)
Next