Hello all. I'm here again asking stupid questions.
I don't have really get this but i ask again but i try explain all better.

Here is a website link and i want catch string from here.
Look page's source code and find first what starts <td> someword </td>

I use this code for catch word from page.
Visual Basic Express 2008 Code:
  1. Imports System.Text.RegularExpressions.Regex
  2.  
  3. Public Class Form1
  4.     Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
  5.         Dim WClient As New Net.WebClient
  6.         Dim WSearch As String
  7.         Dim RX As New System.Text.RegularExpressions.Regex("(?<=<td>).+?(?=</td>)")
  8.         WSearch = WClient.DownloadString("http://itemdb-rs.runescape.com/results.ws?query=Tarromin+seed&price=all&members=")
  9.         MsgBox(RX.Match(WSearch).Value)
  10.     End Sub
  11. End Class

First td is this:
PHP Code:
<td><img src="http://itemdb-rs.runescape.com/2717_obj_sprite.gif?id=5293" alt="Tarromin seed"></td
So it says me:
PHP Code:
<img src="http://itemdb-rs.runescape.com/2717_obj_sprite.gif?id=5293" alt="Tarromin seed"
Why it can not say market price word "19"
I want it to say item price.


Under this what it says me is this.

PHP Code:
<td><img src="http://itemdb-rs.runescape.com/2717_obj_sprite.gif?id=5293" alt="Tarromin seed"></td>
<
td><a href="http://itemdb-rs.runescape.com/Tarromin_seed/viewitem.ws?obj=5293"Tarromin seed</a></td>
<
td>19</td
Why it cant say this FROM here?
PHP Code:
<td>19</td
Can someone help me.
Thank you for answers.