使用NSPredicate过滤字符串为空的NSArray

问题描述 投票:0回答:1

我想使用NSPredicate过滤掉字符串的右边部分为空的字符串数组的项,但是我对NSPredicate的了解有限。

字符串看起来像{"0,General", "1,Sports", "2,Entertainment"}等。>

我想过滤出您遇到类似"0,"甚至","的情况

我知道我可以使用以下内容过滤掉完全空的字符串:

NSArray *filteredcats = [mycats filteredArrayUsingPredicate:
                         [NSPredicate predicateWithFormat:@"length > 0"]];

我如何过滤掉字符串中逗号右边的任何内容为空的数组中的字符串?

我想使用NSPredicate过滤掉字符串的右边部分为空的字符串数组的项,但是我对NSPredicate的了解有限。字符串看起来像{“ 0,General”,“ ...

ios nsarray nspredicate
1个回答
0
投票

您可以轻松地为此使用常规表达式,

© www.soinside.com 2019 - 2024. All rights reserved.