I have the following string :
[["hello","goodbye"]]
and I try to take "hello" and "goodbye" into two separates strings. I use:
NSArray *str = [mystring componentsSeparatedbyString:@"""];
so I cannot use @""" because " is a reserved character.