D Dan S New member Aug 19, 2009 #1 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?
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?
M Michael E New member Aug 19, 2009 #2 Given myString firstCut = Split(myString,"$") firstResult = Split(firstCut(1),"</td>")(0) secondResult = Split(firstCut(2),"</td>")(0) etc
Given myString firstCut = Split(myString,"$") firstResult = Split(firstCut(1),"</td>")(0) secondResult = Split(firstCut(2),"</td>")(0) etc