[categories] [index] [all (552)] [latest]
- (NSString *)stringWithoutComments:(NSString *)string {
NSArray *inputLines = [string componentsSeparatedByString:@"\n"];
NSPredicate *commentsPredicate = [NSPredicate predicateWithFormat: @"SELF beginswith %@", @"--"];
NSPredicate *notCommentsPredicate = [NSCompoundPredicate notPredicateWithSubpredicate:commentsPredicate];
NSArray *filteredLines = [inputLines filteredArrayUsingPredicate:notCommentsPredicate];
return [filteredLines componentsJoinedByString:@"\n"];
}