In my App, data comes in String like this
\"Hi,Hello,Bye\"
I want to separate data by \",\"
How can I do that?
NSString *str = @"Hi,Hello,Bye"; NSArray *aArray = [str componentsSeparatedByString:@","];
For more info, look at this post.