Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an NSString in which I need to URL encode the & and not just the spaces, how do I do this?

share|improve this question

2 Answers

up vote 41 down vote accepted

Unfortunately, stringByAddingPercentEscapesUsingEncoding doesn't always work 100%. It encodes non-URL characters but leaves the reserved characters (like slash / and ampersand &) alone. Apparently this is a bug that Apple is aware of, but since they have not fixed it yet, I have been using this category to url-encode a string:

@implementation NSString (NSString_Extended)

- (NSString *)urlencode {
    NSMutableString *output = [NSMutableString string];
    const unsigned char *source = (const unsigned char *)[self UTF8String];
    int sourceLen = strlen((const char *)source);
    for (int i = 0; i < sourceLen; ++i) {
        const unsigned char thisChar = source[i];
        if (thisChar == ' '){
            [output appendString:@"+"];
        } else if (thisChar == '.' || thisChar == '-' || thisChar == '_' || thisChar == '~' || 
                   (thisChar >= 'a' && thisChar <= 'z') ||
                   (thisChar >= 'A' && thisChar <= 'Z') ||
                   (thisChar >= '0' && thisChar <= '9')) {
            [output appendFormat:@"%c", thisChar];
        } else {
            [output appendFormat:@"%%%02X", thisChar];
        }
    }
    return output;
}

Used like this:

NSString *urlEncodedString = [@"SOME_URL_GOES_HERE" urlencode];

// Or, with an already existing string:
NSString *someUrlString = @"someURL";
NSString *encodedUrlStr = [someUrlString urlencode];

This also works:

NSString *encodedString = (NSString *)CFURLCreateStringByAddingPercentEscapes(
                            NULL,
                            (CFStringRef)unencodedString,
                            NULL,
                            (CFStringRef)@"!*'();:@&=+$,/?%#[]",
                            kCFStringEncodingUTF8 );

Some good reading about the subject:

Objective-c iPhone percent encode a string?
Objective-C url encoding

http://cybersam.com/programming/proper-url-percent-encoding-in-ios
https://devforums.apple.com/message/15674#15674 http://simonwoodside.com/weblog/2009/4/22/how_to_really_url_encode/

share|improve this answer
5  
Why on earth would you use a complicated category like this rather than just dropping down to CFURLCreateStringByAddingPercentEscapes(), where you can explicitly specify which characters you want to always escape. – Kevin Ballard Nov 11 '11 at 1:25
1  
@KevinBallard I have the CFURLCreateStringByAddingPercentEscapes call in my answer also. – chown Nov 11 '11 at 1:28
2  
@KevinBallard because the CF function works on an inclusive model ("escape these characters"), and usually you want to work on an exclusive model ("escape everything except these characters") – Dave DeLong Nov 11 '11 at 3:12
16  
2  
@DaveDeLong That may be where I got it. Its been a standard category in all my projects for a year or so, so I imagine you may have been the original source! I've edited the wording so it doesnt seem like I am trying to take credit for writing it ). – chown Nov 11 '11 at 3:26
show 2 more comments

Once you encode something using Base64 encoding you can make it url space by simply substituting + with - and / with _

stripStr = [encodedString stringByReplacingOccurrencesOfString:@"=" withString:@""];
stripStr = [stripStr stringByReplacingOccurrencesOfString:@"+" withString:@"-"];
stripStr = [stripStr stringByReplacingOccurrencesOfString:@"/" withString:@"_"];

stripStr now has padding removed and appropriate substitutions in place

share|improve this answer
1  
The question is about URL-encoding a string. Base64 is just something else. – Nikolai Ruhe Mar 8 at 11:19

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.