06-09-2009, 11:15 PM
Hi Everyone,
I have a number of links in one string and I want to click on them 1 by 1. But the problem I am facing is that there is no delimiter in the string. No space, decimal or anything. Its just one long line of letters with no space in between.
The code I'm using is
(it just gives me the string without splitting it)
My question is how do I split the string with no delimiter.
Thanks in advance
I have a number of links in one string and I want to click on them 1 by 1. But the problem I am facing is that there is no delimiter in the string. No space, decimal or anything. Its just one long line of letters with no space in between.
The code I'm using is
Code:
str=Browser("").Page("").WebElement(Desc).GetROProperty("innertext")
msgbox str
MyArray = Split(str, "", -1, 1)
Msgbox MyArray (0)
My question is how do I split the string with no delimiter.
Thanks in advance