up vote 3 down vote favorite
4
share [g+] share [fb]

I have an NSURL:

serverCall?x=a&y=b&z=c

What is the quickest and most efficient way to get the value of y?

Thanks

link|improve this question
feedback

7 Answers

up vote 18 down vote accepted

Well I know you said "the quickest way" but after I started doing a test with NSScanner I just couldn't stop. And while it is not the shortest way, it is sure handy if you are planning to use that feature a lot. I created a URLParser class that gets these vars using an NSScanner. The use is a simple as:

URLParser *parser = [[[URLParser alloc] initWithURLString:@"http://blahblahblah.com/serverCall?x=a&y=b&z=c&flash=yes"] autorelease];
NSString *y = [parser valueForVariable:@"y"];
NSLog(@"%@", y); //b
NSString *a = [parser valueForVariable:@"a"];
NSLog(@"%@", a); //(null)
NSString *flash = [parser valueForVariable:@"flash"];
NSLog(@"%@", flash); //yes

And the class that does this is the following (*source files at the bottom of the post):

URLParser.h

@interface URLParser : NSObject {
    NSArray *variables;
}

@property (nonatomic, retain) NSArray *variables;

- (id)initWithURLString:(NSString *)url;
- (NSString *)valueForVariable:(NSString *)varName;

@end

URLParser.m

@implementation URLParser
@synthesize variables;

- (id) initWithURLString:(NSString *)url{
    self = [super init];
    if (self != nil) {
        NSString *string = url;
        NSScanner *scanner = [NSScanner scannerWithString:string];
        [scanner setCharactersToBeSkipped:[NSCharacterSet characterSetWithCharactersInString:@"&?"]];
        NSString *tempString;
        NSMutableArray *vars = [NSMutableArray new];
        [scanner scanUpToString:@"?" intoString:nil];       //ignore the beginning of the string and skip to the vars
        while ([scanner scanUpToString:@"&" intoString:&tempString]) {
            [vars addObject:[tempString copy]];
        }
        self.variables = vars;
        [vars release];
    }
    return self;
}

- (NSString *)valueForVariable:(NSString *)varName {
    for (NSString *var in self.variables) {
        if ([var length] > [varName length]+1 && [[var substringWithRange:NSMakeRange(0, [varName length]+1)] isEqualToString:[varName stringByAppendingString:@"="]]) {
            NSString *varValue = [var substringFromIndex:[varName length]+1];
            return varValue;
        }
    }
    return nil;
}

- (void) dealloc{
    self.variables = nil;
    [super dealloc];
}

@end

*if you don't like copying and pasting you can just download the source files - I made a quick blog post about this here.

link|improve this answer
+1 for awesomeness! NSScanner is a class that I haven't played with much, and this looks really interesting. The only comment I'd say is to not call the method getValue.... That implies (according to convention) that you're going to be returning the value via an out parameter. valueForVariable: would be the proper name. – Dave DeLong Feb 9 '10 at 2:28
I haven't played with NSScanner before either so I figured this a nice task to test it with. As for the method name, I didn't like it either but it was 2:00am and wanted to wrap things up :P It's updated. – Dimitris Feb 9 '10 at 9:51
feedback

I'm pretty sure you have to parse it yourself. However, it's not too bad:

NSString * q = [myURL query];
NSArray * pairs = [q componentsSeparatedByString:@"&"];
NSMutableDictionary * kvPairs = [NSMutableDictionary dictionary];
for (NSString * pair in pairs) {
  NSArray * bits = [pair componentsSeparatedByString:@"="];
  NSString * key = [[bits objectAtIndex:0] stringByReplacingPercentEscapesUsingEncoding:NSASCIIStringEncoding];
  NSString * value = [[bits objectAtIndex:1] stringByReplacingPercentEscapesUsingEncoding:NSASCIIStringEncoding];
  [kvPairs setObject:value forKey:key];
}

NSLog(@"y = %@", [kvPairs objectForKey:@"y"]);
link|improve this answer
feedback

I'd recommend looking at getResourceValue:forKey:error:. The forKey parameter will be y, I believe.

link|improve this answer
huh, I just tried this and it didn't work... – Dave DeLong Feb 9 '10 at 0:39
2  
This appears to only work on OSX, not iPhone. – Dave Feb 9 '10 at 15:16
This isn't what "resource" means in this case. Resource properties have to do with files. See "Common File System Resource Keys" in the NSURL docs for examples of what kinds of properties this routine returns. – Rob Napier Dec 14 '11 at 14:29
feedback

Note that

NSString* x = [url valueForQueryParameterKey:@"x"];

does not ship with NSURL. He probably refers to this this extension which was written by a coworker of mine. (What a small world)

link|improve this answer
The link no longer works – Besi Dec 22 '11 at 10:38
feedback

You can use Google Toolbox for Mac. It adds a function to NSString to convert query string to a dictionary.

http://code.google.com/p/google-toolbox-for-mac/

It works like a charm

        NSDictionary * d = [NSDictionary gtm_dictionaryWithHttpArgumentsString:[[request URL] query]];
link|improve this answer
feedback

Quickest is:

NSString* x = [url valueForQueryParameterKey:@"x"];
link|improve this answer
feedback

NSString* x = [url valueForQueryParameterKey:@"x"];

The above format doesn't seem to work. Is there anything else that needs to be done to make that work? It throws this exception: "NSString* x = [url valueForQueryParameterKey:@"x"];"

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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