ios nsstring 字符串包含引号 处理方法

iOS App开发中,如果在一个NSString中使用引号,需要采用下面的方法:
 NSString * testStr = @"你好,\"你好\"";
 NSLog(@"%@",testStr);


//输出结果为:你好,"你好"

你可能感兴趣的:(ios nsstring 字符串包含引号 处理方法)