Visual Basic, find a string within HTML?

Dan S

New member
I've got a variable containing the HTML of a webpage...
I need to find the string that exists *after* the "$" character and before the "</td>" character... And there are four of them.
How can I find and label all four to variables?
 
Given myString

firstCut = Split(myString,"$")

firstResult = Split(firstCut(1),"</td>")(0)
secondResult = Split(firstCut(2),"</td>")(0)

etc
 
Back
Top