Je voudrais recupérer la dernière difficulté sur ce site:
http://rabbitco.in:8080/chain/RabbitCoin

voila ou j'en suis :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Imports System.Text.RegularExpressions
 
Public Class Form1
 
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
 
      Dim request As System.Net.HttpWebRequest = System.Net.HttpWebRequest.Create("http://rabbitco.in:8080/chain/RabbitCoin")
      Dim response As System.Net.HttpWebResponse = request.GetResponse
 
      Dim sr As System.IO.StreamReader = New System.IO.StreamReader(response.GetResponseStream())
 
      Dim rssourcecode As String = sr.ReadToEnd
 
      Dim r As New System.Text.RegularExpressions.Regex("<a href=""../block/.*"">.*</a></td><td>.*</td><td>.*</td><td>.*</td><td>.*</td><td>.*</td><td>.*</td><td>.*</td><td>.*</td></tr>")
      Dim matches As MatchCollection = r.Matches(rssourcecode)
 
      For Each itemcode As Match In matches
 
      ListBox1.Items.Add(itemcode.Value.Split("""").GetValue(2))
 
      Next
 
    End Sub
 
End Class
Le problème est que cela ne me donne pas exactement ce que je voudrais...
avec le code ci-dessus j'ai toute les lignes.

Si quelq'un peut m'aider sa serais génial!