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 |
|||
|
|
|
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. |
|||||||
|
|
I'm pretty sure you have to parse it yourself. However, it's not too bad:
|
|||||
|
|
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
|
|||
|
|
|
I wrote a simple category to extend NSString/NSURL that lets you extract URL query parameters individually or as a dictionary of key/value pairs: |
||||
|
|
|
I did it using a category method based on @Dimitris solution
|
|||
|
|
You can do that easy :
It return Dictionary like it : Key = value |
|||
|
|
|
I'd recommend looking at |
|||||||||
|