-
iOS中NSArray的过滤 HA
- //找出一个数组
- NSFileManager *fileManager = [NSFileManager defaultManager];
- NSString *defaultPath = [[NSBundle mainBundle] resourcePath];
- NSError *error;
-
- NSArray *directoryContents = [fileManager contentsOfDirectoryAtPath:defaultPath error:&error]
- //匹配字符串,反回结果, SELF==表示数组中每一个元素
- NSString *match = @"imagexyz-999.png";
- NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF == %@", match];
- NSArray *results = [directoryContents filteredArrayUsingPredicate:predicate];
-
- //近似匹配字符串,类似SQL中的语法
- NSString *match = @"imagexyz*.png";
- NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF like %@", match];
- NSArray *results = [directoryContents filteredArrayUsingPredicate:predicate];
- //不区分大小写匹配
- NSString *match = @"imagexyz*.png";
- NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF like[cd] %@", match];
- NSArray *results = [directoryContents filteredArrayUsingPredicate:predicate];
- //正则匹配
- NSString *match = @"imagexyz-\\d{3}\\.png";
- NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF matches %@", match];
- NSArray *results = [directoryContents filteredArrayUsingPredicate:predicate];
-
相关阅读:
第五节13读取配置中的连接字符串 简单
第五节 8_手机归属地查询案例 简单
第五节 8登陆练习操作 简单
第五节 21类型化DataSet 简单
PHP XML操作类DOMDocument 简单
第十节 1ASP.Net简介及学习方法 简单
第五节 8注入漏洞与参数化查询 简单
在与 SQL Server 建立连接时出现与网络相关的或特定于实例的错误............ 简单
第五节 17DateStr 简单
第五节 19可空数据类型 简单
-
原文地址:https://www.cnblogs.com/halou/p/2061071.html
Copyright © 2020-2023
润新知