我有一个像这样的字符串
NSString * tempStr = @"abc,def,"ijk,lmn",op,"rst,uvw",xyz";
如果我使用
分隔值[tempStr stringByReplacingOccurrencesOfString:@",\"" withString:@";"];
我得到输出数组为
(ABC,
DEF,
“IJK,
LMN”,
运算,
“RST,
UVW”,
XYZ)
我希望输出像
这样的数组(ABC,
DEF,
IJK,LMN,
运算,
RST,UVW,
XYZ)