Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Okay, this is probably a simple one...

I've got a string in .NET which is actually a url. I want an easy way to get the value from a particular parameter.

Normally, I'd just use Request.Params["theThingIWant"], but this string isn't from the request. I can create a new Uri item like so:

Uri myUri = new Uri(TheStringUrlIWantMyValueFrom);

And I can use myUri.Query to get the query string...but then I apparently have to find some regexy way of splitting it up.

Am I missing something obvious, or is there no built in way to do this short of creating a regex of some kind, etc?

share|improve this question

6 Answers

up vote 110 down vote accepted

Use static ParseQueryString() method of System.Web.HttpUtility class that returns NameValueCollection.

Uri myUri = new Uri("http://www.example.com?param1=good&param2=bad");
string param1 = HttpUtility.ParseQueryString(myUri.Query).Get("param1");

Check documentation at http://msdn.microsoft.com/en-us/library/ms150046.aspx

share|improve this answer
Boom! Quick way to raise your rep up! Thanks! – Beska Mar 18 '09 at 20:26
You are welcome. – CZFox Mar 18 '09 at 20:37
5  
This doesn't seem to detect the first parameter. eg parsing "google.com/…; doesn't detect the parameter q – Andrew Shepherd Jun 30 '09 at 4:26
@Andrew I confirm. It's strange (bug?). You coul still use HttpUtility.ParseQueryString(myUri.Query).Get(0) though and it will extract first parameter. ` – CichyK24 Aug 2 '11 at 15:03
1  
Doesn't work with a relative url... – Quandary Dec 21 '12 at 1:46
show 1 more comment

This is probably what you want

var uri = new Uri("http://domain.test/Default.aspx?var1=true&var2=test&var3=3");
var query = HttpUtility.ParseQueryString(uri.Query);

var var2 = query.Get("var2");
share|improve this answer

Looks like you should loop over the values of myUri.Query and parse it from there.

 string desiredValue;
 foreach(string item in myUri.Query.Split('&'))
 {
     string[] parts = item.Replace('?', '').Split('=');
     if(parts[0] == "desiredKey")
     {
	     desiredValue = parts[1];
	     break;
     }
 }

I wouldn't use this code without testing it on a bunch of malformed URL's however. It might break on some/all of these:

  • hello.html?
  • hello.html?valuelesskey
  • hello.html?key=value=hi
  • hello.html?hi=value?&b=c
  • etc
share|improve this answer

@Andrew and @CZFox

I had the same bug and found the cause to be that parameter one is in fact: "http://www.example.com?param1" and not "param1" which is what one would expect.

By removing all characters before and including the question mark fixes this problem. So in essence the HttpUtility.ParseQueryString function only requires a valid query string parameter containing only characters after the question mark as in:

HttpUtility.ParseQueryString ( "param1=good&param2=bad" )

My work around:

string RawUrl = "http://www.example.com?param1=good&param2=bad";
int index = RawUrl.IndexOf ( "?" );
if ( index > 0 )
    RawUrl = RawUrl.Substring ( index ).Remove ( 0, 1 );

Uri myUri = new Uri( RawUrl );
string param1 = HttpUtility.ParseQueryString( myUri.Query ).Get( "param1" );`
share|improve this answer

Use .Net Reflector to view the "FillFromString" method of System.Web.HttpValueCollection. That gives you the code that ASP.Net is using to fill the Request.QueryString collection.

share|improve this answer

You can use the following workaround for it to work with the first parameter too:

var param1 =
    HttpUtility.ParseQueryString(url.Substring(
        new []{0, url.IndexOf('?')}.Max()
    )).Get("param1");
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.