i want to replace particular data's in json string
+3
A:
Parse it, make the changes you need, then serialize it back out. You didn't say what JSON library you're using, but it should be fairly easy.
Matthew Flaschen
2010-06-14 05:36:58
Pls give me any sample
Bala
2010-06-14 05:39:11
*Please* tell us what library you're using.
Matthew Flaschen
2010-06-14 05:45:18
A:
Without knowing the specifics of your problem:
[jsonString stringByReplacingOccurrencesOfString:@"replaceme" withString:@"replacement"];
But you're probably far better of using a JSON library.
Ciryon
2010-06-14 05:47:48