从 NSDictionary 获取字符串值
我有以下代码:
NSMutableDictionary *jsonObj = [parser objectWithString:json_string error:nil];
NSString *test = [[[jsonObj objectForKey:@"questions"] valueForKey:@"owner"] valueForKey:key];
但我得到的结果是:
(
1a19f089a2bc4ee42bff1c102c6e89b8
)
实际值很好,但我得到了那些括号,它们显示在我的字符串中。我怎样才能摆脱它们?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
-stringByTrimmingCharactersInSet:
例如 反转 字母数字字符集应该可以正常工作这里:但实际上,这听起来像是 JSON 的提供者或解析器应该被修复。
-stringByTrimmingCharactersInSet:
with e.g. an inverted alphanumeric character set should work fine here:But actually that sounds like either the provider of the JSON or the parser should be fixed.