Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i get the following value as a string format.

    getcommands=(
    {
    "created_time" = "2011-01-18T10:44:14+0000";
    from =         {
        id = 100001511725982;
        name = "ABC Welcomes U";
    };
    id = "100001511725982_158433587542247_1658635";
    message = Nice;
},
    {
    "created_time" = "2011-01-18T10:44:22+0000";
    from =         {
        id = 100001511725982;
        name = "ABC Welcomes U";
    };
    id = "100001511725982_158433587542247_1658637";
    message = "Gud One";
}
 )

Now, i need to get ""Message"" only from this string.

Please any one knows the code please help me.

Thanks.

share|improve this question
It this a JSON-encoded data structure? – Felz Jan 18 '11 at 11:54

1 Answer

Pass this value to json class and you will get it a dict formate of it then use this method to get message from it

[[[dict valueforkey:@"getcommands"]objectatindex:indexpath.row]valueforkey:@"message"];

NSString *urlStr = [NSString stringWithFormat:@"http://apple.com/reviewxml.php?show=Jfield"];

NSURLRequest *request = [[NSURLRequest alloc] initWithURL:[NSURL URLWithString:[urlStr stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]];

NSString *json = [BKAPIClient handleConnection:request];

[request release];

if (json)
    return (NSMutableDictionary *)[json JSONValue];


return nil;
share|improve this answer
can you please give me sample code? – Velmurugan Jan 18 '11 at 11:50
I have edit my answer check it – GhostRider Jan 18 '11 at 11:58
it is not working.. What is BKAPIClient? and i have only string value. It is not URL. i got these value from facebook. – Velmurugan Jan 18 '11 at 12:12
ok then use (NSMutableDictionary *)[string JSONValue]; have you add json file in you project ? – GhostRider Jan 18 '11 at 12:15

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.