gpt4 book ai didi

cocoa - predicateWithFormat 与 stringWithFormat : is the former supposed to do the same as the latter?

转载 作者:行者123 更新时间:2023-12-03 16:18:04 26 4
gpt4 key购买 nike

我有一个包含文件名的数组,我想找到所有以例如结尾的名称。 00001.trctraceNum 为 1 时。我试过这个:

NSPredicate *tracePredicate = [NSPredicate predicateWithFormat:@"SELF ENDSWITH \"%05d.trc\"", traceNum];

我的谓词是 SELF ENDSWITH "%05d.trc" 而不是 SELF ENDSWITH "00001.trc"

我尝试过这个:

NSPredicate *tracePredicate = [NSPredicate predicateWithFormat:@"SELF ENDSWITH %@%05d.trc%@", @"\"", traceNum, @"\""];

我遇到了一个异常:无法解析格式字符串“SELF ENDSWITH %@%05d.trc%@”

所以我尝试了这个:

NSPredicate *tracePredicate = [NSPredicate predicateWithFormat:[NSString stringWithFormat:@"SELF ENDSWITH \"%05d.trc\"", traceNum]];

并且它有效。

那么,除了 predicateWithFormat 之外,我真的还需要 stringWithFormat 吗?还是我在创建谓词时没有正确执行某些操作?

最佳答案

你是对的; predicateWithFormat:stringWithFormat: 不太一样。

之所以有所不同,有几个主要原因:

  1. 它实际上并没有创建一个新字符串。它只是查看格式字符串并查看下一个要替换的内容,将其从 va_list 中弹出,然后将其装箱到适当的 NSExpression 对象中。
  2. 它必须支持 NSString 不支持的格式说明符:%K。这就是在关键路径中进行替换的方法。如果您尝试使用 %@ 替换属性名称,它实际上会被解释为文字字符串,而不是属性名称。
  3. 不支持使用格式限制(我不确定正确的术语是什么),例如 %05d 中的 05。一方面,这没有意义。 NSPredicate 进行数字比较(在这种情况下,000055 相同,因此零填充无关)和字符串比较(在您可以在将字符串提供给 NSPredicate 之前自行格式化字符串)。 (它还进行其他比较,例如集合操作,但我现在跳过这些)

那么,你如何做你想做的事呢?最好的方法是这样的:

NSString *trace = [NSString stringWithFormat:@"%05d.trc", traceNum];
NSPredicate *p = [NSPredicate predicateWithFormat:@"SELF ENDSWITH %@", trace];

通过这种方式,您可以执行所需的所有格式设置,但仍然使用更正确的方法,即传递常量字符串作为谓词格式。

关于cocoa - predicateWithFormat 与 stringWithFormat : is the former supposed to do the same as the latter?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7238631/

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