Objective-C
Objective-C
Decode HTML Entity Encoded JSON
See more JSON Examples
Decodes an HTML entity encoded string to JSON.Chilkat Objective-C Downloads
#import <CkoStringBuilder.h>
BOOL success = NO;
CkoStringBuilder *sb = [[CkoStringBuilder alloc] init];
success = [sb Append: @"{"xyz": "abc"}"];
[sb EntityDecode];
// This is a test comment;
NSLog(@"%@",[sb GetAsString]);
// Output is:
// {"xyz": "abc"}