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:
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(srcsPattern).Item(0).Groups(1).Value
But it doesn't work.

Please help