Skip to content

Instantly share code, notes, and snippets.

@tediscript
Created March 27, 2013 08:00
Show Gist options
  • Select an option

  • Save tediscript/5252525 to your computer and use it in GitHub Desktop.

Select an option

Save tediscript/5252525 to your computer and use it in GitHub Desktop.
NSString *url = @"http://www.developerfeed.com/search.jsp?params=Java Developer";
NSString* encodedUrl = [url stringByAddingPercentEscapesUsingEncoding: NSASCIIStringEncoding];
NSLog(@"Encoded URL %@",encodedUrl);
// output will be
//http://www.developerfeed.com/search.jsp?params=Java%20Developer;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment