gpt4 book ai didi

iphone - NSComparisonResult 搜索字符串的一部分?

转载 作者:可可西里 更新时间:2023-11-01 06:18:20 25 4
gpt4 key购买 nike

我将 NSComparisonResult 与我的 SearchController 一起使用:

for (Annotation *ano in listContent) {
NSComparisonResult result = [ano.title compare:searchText options:(NSCaseInsensitiveSearch|NSDiacriticInsensitiveSearch) range:NSMakeRange(0, [searchText length])];
if (result == NSOrderedSame) {
[self.filteredListContent addObject:ano];
}
}

如果我搜索一个字符串,它只会找到以该字符串开头的结果。

记录是“我的艺术画廊

  • 搜索“我的艺术画廊”<---找到了

  • 搜索“我的” <--- 找到

  • 搜索“艺术”<--- 未找到

  • 搜索“图库”<--- 未找到

如何更改我的代码,以便我可以找到上面显示的部分字符串?

最佳答案

我最终使用了 NSRange,它让我基本上可以搜索子字符串:

for (Annotation *ano in listContent) {

NSRange range = [ano.title rangeOfString:searchText options:NSCaseInsensitiveSearch];
if (range.location != NSNotFound) {
[self.filteredListContent addObject:ano];
}

}

关于iphone - NSComparisonResult 搜索字符串的一部分?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4787734/

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