gpt4 book ai didi

ios - iOS 中 NSString 中字符的索引

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:30:20 25 4
gpt4 key购买 nike

我有一个 NSString,例如 "This is my question"。我想找到字符/子字符串 "i" 的所有索引,即在这种情况下如果索引从0开始,那么我想要2,5,16作为我的答案。

最佳答案

另一个答案有点矫枉过正。为什么不像这样简单地遍历字符:

NSString *x = @"This is my question";

for (NSUInteger i=0;i<[x length];i++)
{
if ([x characterAtIndex:i]=='i')
{
NSLog(@"found: %d", i);
}
}

它准确输出你的位置:

found: 2
found: 5
found: 16

关于ios - iOS 中 NSString 中字符的索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16662362/

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