Skip to content

Instantly share code, notes, and snippets.

@mdippery
Created September 22, 2010 15:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mdippery/591854 to your computer and use it in GitHub Desktop.
Save mdippery/591854 to your computer and use it in GitHub Desktop.
#import <Foundation/Foundation.h>
int main(int argc, char **argv)
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSString *json = @"DUMMY({parameters:{code:\"60246\", language:\"en\", country:\"en\"}, result:{\"...JSON...});";
NSUInteger rangeStart = [json rangeOfString:@"result:"].location;
NSString *justJson = [json substringFromIndex:rangeStart + [@"range:" length]];
NSUInteger lastBrace = [justJson rangeOfString:@"}" options:NSBackwardsSearch].location;
justJson = [justJson substringToIndex:lastBrace+1];
printf("%s\n", [justJson UTF8String]);
[pool release];
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment