Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Dim RegexPattern As String = "<img class=""profilePic img"" src="".+.jpg"" alt=""\w+.\w+"" />"
- Dim Regex As New Regex(RegexPattern)
- For Each Match As Match In Regex.Matches(Page)
- If Match.Success Then
- 'Do your thing here. It will return the image url first, then the Name
- End If
- Next
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement