14-03-21, 04:13 PM
وعليك السلام ورحمة الله وبركاته
جرب هذا الكود
جرب هذا الكود
PHP كود :
Dim links As New List(Of String)()
Dim htmlDoc As New HtmlAgilityPack.HtmlDocument()
htmlDoc.LoadHtml(WebSource)
For Each link As HtmlNode In htmlDoc.DocumentNode.SelectNodes("//a[@href]")
Dim att As HtmlAttribute = link.Attributes("href")
If att.Value.Contains("'googlevideo.com/videoplayback?'") Then
links.Add(att.Value)
End If
Next


