I'm trying to return a unique ID from the URL with changes every time you login.
The URL look like this: 949285 is the ID
I tried with this regex:
But it doesn't work.PHP Code:Dim sPattern As String = "q=(*.?)&p"
Dim src As String
Dim net As New Net.WebClient()
src = WebBrowser1.Url.ToString
id = (System.Text.RegularExpressions.Regex.Matches(src, sPattern).Item(0).Groups(1).Value)
Please help![]()




Reply With Quote