05-22-2011, 06:40 PM
Hi,
Refer the below example:
Refer the below example:
Code:
var="blah 1234"
sp_var=split(var, " ")
For i=lbound(sp_var) to ubound(sp_var)
msgbox sp_var(i)
Next