This is really bugging me. I'm trying to replace and strip text at the same time from an HTML Document. But it still returns the <li> and </li> Here is my code:
VB.NET:
Function stripit()
Dim strip1
Dim strip2
Dim strip3
strip1 = AnaG.DocumentText.Remove(0, 2121)
strip2 = AnaG.DocumentText.Replace("<li>", "")
strip3 = AnaG.DocumentText.Replace("</li>", "")
Return strip1 & strip2 & strip3
End Function