04-23-2012, 02:24 PM
Hi All,
I have a problem, I have the following string
num="123 343 234."
I split the line by using
words=split(num, " ")
for i=lbound(words) to ubound(words)
msgbox(words(i))
next
Now I am getting 123
343
234
.
I want to remove the dot from the end and want to store these values into dynamic array, any suggestion?
I have a problem, I have the following string
num="123 343 234."
I split the line by using
words=split(num, " ")
for i=lbound(words) to ubound(words)
msgbox(words(i))
next
Now I am getting 123
343
234
.
I want to remove the dot from the end and want to store these values into dynamic array, any suggestion?