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
|
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 | |||
|
feedback
|
|
Well I know you said "the quickest way" but after I started doing a test with
And the class that does this is the following (*source files at the bottom of the post): URLParser.h
URLParser.m
*if you don't like copying and pasting you can just download the source files - I made a quick blog post about this here. | |||||
feedback
|
|
I'm pretty sure you have to parse it yourself. However, it's not too bad:
| |||
|
feedback
|
|
I'd recommend looking at | |||||||||
feedback
|
|
Note that
does not ship with NSURL. He probably refers to this this extension which was written by a coworker of mine. (What a small world) | |||
|
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
| |||
|
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"];" | |||
|
feedback
|