[Help]Reoccuring String
Hey in a source code there is a string that shows up three times.
How can i search for the second
Btw this is a source code of a webpage.
--
so far i have:
but this code:
For Each Topic1 In httpContent
TextBox1 = vbNewLine & Topic1
Next
doesnt work.
Code:
<li class='hentry row1'>
Code:
<li class='hentry row1'>
--
so far i have:
Code:
Dim ViewRegEx As New Regex("<li class='hentry row1'><a href='/forum/(?<Topic1>(.*))' rel='bookmark' title='View topic'>")
Topic1 = ViewRegEx.Match(httpContent).Groups("Topic1").ToString
For Each Topic1 In httpContent
TextBox1 = vbNewLine & Topic1
Next
For Each Topic1 In httpContent
TextBox1 = vbNewLine & Topic1
Next
doesnt work.


, PM / VM MJ2