NSPredicate 的结果作为字符串

发布于 2024-11-15 22:27:10 字数 230 浏览 4 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

百善笑为先 2024-11-22 22:27:10

那样不行。

例如,如何创建等于“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.

变身佩奇 2024-11-22 22:27:10

您说上面的代码结果是 True,所以您需要创建 NSString 对象。

NSPredicate *predicate;
predicate = [NSPredicate predicateWithFormat:@"SELF CONTAINS 'aaa'"];
//this is for NSString object
NSString *checkMe=@"anystringaaaggg";
BOOL result = [predicate evaluateWithObject:checkMe];

然后我们可以使用这个 checkMe 作为字符串对象并在任何你想要的地方使用

或者

//other object
id *checkMe=anyObject;
BOOL result = [predicate evaluateWithObject:[NSString stringWithFormat:@"%@",checkMe]];
NSString *result=[checkMe stringValue];

然后我们可以使用这个结果作为字符串对象并在你想要的任何地方使用

You said result is True for the above code so u need to make NSString object.

NSPredicate *predicate;
predicate = [NSPredicate predicateWithFormat:@"SELF CONTAINS 'aaa'"];
//this is for NSString object
NSString *checkMe=@"anystringaaaggg";
BOOL result = [predicate evaluateWithObject:checkMe];

Then we can use this checkMe as string object and use anywhere u want

OR

//other object
id *checkMe=anyObject;
BOOL result = [predicate evaluateWithObject:[NSString stringWithFormat:@"%@",checkMe]];
NSString *result=[checkMe stringValue];

Then we can use this result as string object and use anywhere u want

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文