如何使用Python使用正则表达式搜索字符串中的多个单词

时间:2017-08-11 16:13:36

标签: c# regex

我正在尝试使用正则表达式从文件名中没有“test”和“dummy”的位置读取文件。

例如,文件路径包含以下文件。

AFHTTPSessionManager *manager = [AFHTTPSessionManager manager];

for (NSInteger i = 0; i < urlArray.count; i++) {
    NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:urlArray[i]]];
    NSURLSessionTask *task = [manager downloadTaskWithRequest:request progress:^(NSProgress *downloadProgress) {
        [self.delegate downloadProgression:downloadProgress.fractionCompleted * 100.0];
    } destination:^NSURL *(NSURL *targetPath, NSURLResponse *response) {
        return [NSURL fileURLWithPath:[self.documentDirectory getDownloadContentPath:contentPaths[i]]];
    } completionHandler:^(NSURLResponse *response, NSURL *filePath, NSError *error) {
        NSLog(@"File downloaded to: %@", filePath);
        NSLog(@"Error: %@" error.localizedDescription);
    }];
    [task resume];
}

在这里,我需要找到file1.csv和file2.txt,并排除所有其他具有测试或虚拟文件的文件(可以是任何情况下的上/下)。

0 个答案:

没有答案