23-04-19, 12:13 AM
تفضل اخي تم التعديل على الكود
كود :
Dim pageSource = New WebClient().DownloadString("https://www.livesoccertv.com/fr/channels/bein-sports-arabia-1-hd/")
Dim dat As MatchCollection = Regex.Matches(pageSource, "(?<=df='H:MM'>).+(?=<\/span><span)")
Dim mtch As MatchCollection = Regex.Matches(pageSource, "(?<=title="").+(?="" id=)")
Dim liga As MatchCollection = Regex.Matches(pageSource, "(?<="" title="".+>).+(?=<\/a> <\/td>)")
For i = 0 To dat.Count - 1
Dim farfour As New ListViewItem(dat(i).Value)
farfour.SubItems.Add(mtch(i).Value)
farfour.SubItems.Add(liga(i).Value)
ListView1.Items.Add(farfour)
Next