tags:

views:

40

answers:

2

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
Pls give me any sample
Bala
*Please* tell us what library you're using.
Matthew Flaschen
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