In my App, data comes in String like this
\"Hi,Hello,Bye\"
I want to separate data by \",\"
How can I do that?
NSArray *components = [@"Hi,Hello,Bye" componentsSeparatedByString:@","];
Apple's String Programming Guide will help you get up to speed.