什么 NSString 比较方法调用相当于 CFStringCompare 函数调用?
我正在将一些旧的 Carbon 代码转换为 Cocoa,并且需要使用一个比较函数,该函数将返回与 Carbon 中的结果相同的结果。
我正在打电话:
CFStringCompare( stringA, stringB, kCFCompareCaseInsensitive | kCFCompareDiacriticInsensitive | kCFCompareNumerically );
现在,如果 stringA & stringB 是 NSString 的,我想使用 NSString 方法来比较它们,哪个方法使用什么选项(如果有)会返回与上面的 CFStringCompare 函数相同的结果?
I am converting some old carbon code to Cocoa and need to use a comparison function that will return the same result as the one in carbon.
I am calling:
CFStringCompare( stringA, stringB, kCFCompareCaseInsensitive | kCFCompareDiacriticInsensitive | kCFCompareNumerically );
Now, if stringA & stringB were NSString's and I wanted to compare them using a NSString method, which one, with what options (if any), would return the same result as the CFStringCompare function above?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
答案似乎是:
The answer appears to be:
[字符串1等于字符串:字符串2];
[字符串1 caseSensitiveCompare:字符串2];
等等。
转到 NSString 类参考以获取更多信息
[string1 isEqualToString:string2];
[string1 caseSensitiveCompare:string2];
and so on.
goto the NSString class reference for more information