D divyaprasad85 macrumors newbie Original poster Nov 8, 2010 #1 How to parse these JSON Data in iPhone. {"Result":{"Data":[{"Status":"Success"}]}} Please reply Thank You,
How to parse these JSON Data in iPhone. {"Result":{"Data":[{"Status":"Success"}]}} Please reply Thank You,
robbieduncan Moderator emeritus Nov 9, 2010 #2 You have a number of options 1) Use various NSString methods (componentsSeparatedByString: a few times would basically work) 2) Use NSScanner to scan the string 3) Use an external regexp library Note I'm not going to write "example" or "sample" code for any of this
You have a number of options 1) Use various NSString methods (componentsSeparatedByString: a few times would basically work) 2) Use NSScanner to scan the string 3) Use an external regexp library Note I'm not going to write "example" or "sample" code for any of this
D divyaprasad85 macrumors newbie Original poster Nov 9, 2010 #4 Thank You for reply robbieduncan said: You have a number of options 1) Use various NSString methods (componentsSeparatedByString: a few times would basically work) 2) Use NSScanner to scan the string 3) Use an external regexp library Note I'm not going to write "example" or "sample" code for any of this Click to expand... Thank You reply dejo said: Another option is to use TouchJSON. Click to expand... Last edited by a moderator: Nov 9, 2010
Thank You for reply robbieduncan said: You have a number of options 1) Use various NSString methods (componentsSeparatedByString: a few times would basically work) 2) Use NSScanner to scan the string 3) Use an external regexp library Note I'm not going to write "example" or "sample" code for any of this Click to expand... Thank You reply dejo said: Another option is to use TouchJSON. Click to expand...