NSPredicate 的结果作为字符串
NSPredicate *predicate;
predicate = [NSPredicate predicateWithFormat:@"SELF CONTAINS 'aaa'"];
BOOL result = [predicate evaluateWithObject:@"anystringaaaggg"];
结果是真的。但我需要创建一个包含“aaa”的 NSString。我该怎么做?
NSPredicate *predicate;
predicate = [NSPredicate predicateWithFormat:@"SELF CONTAINS 'aaa'"];
BOOL result = [predicate evaluateWithObject:@"anystringaaaggg"];
Result is true. But I need to create an NSString that will contain "aaa". How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
那样不行。
例如,如何创建等于“Steve”或“Novikoff”的字符串?然而,您可以创建一个谓词来检查相同的条件。
Doesn't work that way.
For example, how could you create a string that equals "Steve" OR "Novikoff"? Yet you can create a predicate to check for the same condition.
您说上面的代码结果是 True,所以您需要创建 NSString 对象。
然后我们可以使用这个 checkMe 作为字符串对象并在任何你想要的地方使用
或者
然后我们可以使用这个结果作为字符串对象并在你想要的任何地方使用
You said result is True for the above code so u need to make NSString object.
Then we can use this checkMe as string object and use anywhere u want
OR
Then we can use this result as string object and use anywhere u want