i want get the table "Partite" on this site:
http://it.soccerway.com/national/italy/serie-a/20142015/regular-season/r27139/
so i create this code:
Dim HTML As String = New WebClient().DownloadString(URLs(MetroComboBox2.SelectedIndex))
Dim URL_Params As String = "&callback_params=" & Regex.Match(HTML, "'block_competition_matches_summary', ({[\w\s"",:]+})").Groups(1).ToString
Dim Base_URL As String = "http://it.soccerway.com/a/block_competition_matches_summary?block_id=page_competition_1_block_competition_matches_summary_6"
Dim Giornata_URL As String = Base_URL & URL_Params & "&action=changeView¶ms={""view""%3A1}"
with Html variable I get the link that i posted previously, in the URL_Params i'm trying to match the div class "block_competition_matches_summary".
But apparently the regex don't catch the element.
So i assembly all variable in Giornata_Url. What I wrong in this?