从 NSDictionary 获取字符串值

发布于 2024-09-02 01:32:28 字数 344 浏览 8 评论 0 原文

我有以下代码:

NSMutableDictionary *jsonObj = [parser objectWithString:json_string error:nil];
NSString *test = [[[jsonObj objectForKey:@"questions"] valueForKey:@"owner"] valueForKey:key];

但我得到的结果是:

 (
1a19f089a2bc4ee42bff1c102c6e89b8
)

实际值很好,但我得到了那些括号,它们显示在我的字符串中。我怎样才能摆脱它们?

I have the following code:

NSMutableDictionary *jsonObj = [parser objectWithString:json_string error:nil];
NSString *test = [[[jsonObj objectForKey:@"questions"] valueForKey:@"owner"] valueForKey:key];

but what I get back is:

 (
1a19f089a2bc4ee42bff1c102c6e89b8
)

The actual value is fine, but I get those parenthesis, which show up in my string. How can I get rid of them?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

稳稳的幸福 2024-09-09 01:32:28

-stringByTrimmingCharactersInSet: 例如 反转 字母数字字符集应该可以正常工作这里:

cleanStr = [str stringByTrimmingCharactersInSet:
            [[NSCharacterSet alphaNumericCharacterSet] invertedSet]];

但实际上,这听起来像是 JSON 的提供者或解析器应该被修复。

-stringByTrimmingCharactersInSet: with e.g. an inverted alphanumeric character set should work fine here:

cleanStr = [str stringByTrimmingCharactersInSet:
            [[NSCharacterSet alphaNumericCharacterSet] invertedSet]];

But actually that sounds like either the provider of the JSON or the parser should be fixed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文