gpt4 book ai didi

iphone - 提取NSCFConstantString的第一项

转载 作者:行者123 更新时间:2023-12-01 19:20:18 24 4
gpt4 key购买 nike

我有以下输出到控制台,说该类是__NSCFConstantString

NSLog(@"select category instance %@", [[SelectCategory instance] getCategoryText].class);

该字符串的输出为: 酒吧|咖啡馆|杂货店或超市|酒类商店|夜店

如何仅提取第一类? (类别由“ | ”分隔。)在这种情况下,它将是“ bar ”。然后,我需要将其存储在变量中。

谢谢你的帮助

最佳答案

由于__NSCFConstantStringNSString,因此可以使用 componentsSeparatedByString: 方法:

NSString *all = [[SelectCategory instance] getCategoryText];
NSString *first = [[all componentsSeparatedByString:@"|"] objectAtIndex:0];

关于iphone - 提取NSCFConstantString的第一项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10670076/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com