Possible Duplicate:
Get individual query parameters from Uri
I have got a URL like this:
http://somedomain.com/website/webpage.aspx?token=123456&language=English
My goal is to extract 123456 from it. There can only be one payment ID in the query-string parameter. What kind of regular expression can I use? I am using C# (.NET) by the way.
Thanks