In my App, data comes in String like this
\"Hi,Hello,Bye\"
I want to separate data by \",\"
How can I do that?
If it's NSString, you can use componentsSeparatedByString.
If it's std::string, you can iterate looking for the item (using find_frst_of and substr)