0

如何比较两个独立于字符的 NSString?

NSPredicate提供==[d]比较器。
但是我没有找到NSString直接比较两个 s 的方法。


例如,这两个字符串应该被认为是相同的:

Šämplé Štrïñg

示例字符串

4

2 回答 2

3
NSString *s1 = @"Šämplé Štrïñg";
NSString *s2 = @"Sample String";
NSComparisonResult cmp = [s1 compare:s2 options:NSDiacriticInsensitiveSearch];
// --> cmp = NSOrderedSame
于 2013-03-28T22:30:59.010 回答
3

使用compare:options:

NSString *str1 = ...;
NSString *str2 = ...;
NSComparisonResult result = [str1 compare:str2 options:NSDiacriticInsensitiveSearch | NSCaseInsensitiveSearch | NSWidthInsensitiveSearch];

如果要对字符串执行其他操作,可以将两个字符串折叠成更简单的形式:

NSString *fold1 = [str1 stringByFoldingWithOptions:NSDiacriticInsensitiveSearch | NSCaseInsensitiveSearch | NSWidthInsensitiveSearch locale:[NSLocale currentLocale]];
NSString *fold2 = [str2 stringByFoldingWithOptions:NSDiacriticInsensitiveSearch | NSCaseInsensitiveSearch | NSWidthInsensitiveSearch locale:[NSLocale currentLocale]];
NSRange range = [fold1 rangeOfString:fold2]; // or other string comparisons
于 2013-03-28T22:31:10.300 回答