1

我搜索了高低,但找不到一个好的正则表达式来剥离目标 C 中的 // 和 /* */ 注释。

但是,我找到了一个很好的答案Regex 从我已移植到 Objective C的 C# 中删除行注释。

它没有那么优雅或写得很好,我很想得到关于如何改进它的反馈,所以我会把它作为答案发布,希望它对某人有所帮助

4

1 回答 1

4

好的 - 这里是:

+ (NSString *) stripComments:(NSString *)text{

    NSString *blockComments = @"/[*](.*?)[*]/";
    NSString *lineComments = @"//(.*?)\r?\n";
    NSString *strings = @"\"((\\[^\n]|[^""\n])*)\"";
    NSString *verbatimStrings = @"@(\"[^\"]*\")+";
    NSMutableArray *removes = [NSMutableArray array];

    NSError *error = NULL;
    NSRegularExpression *regexComments = [NSRegularExpression regularExpressionWithPattern:[NSString stringWithFormat:@"%@|%@|%@|%@",blockComments,lineComments,strings,verbatimStrings] options:NSRegularExpressionCaseInsensitive | NSRegularExpressionDotMatchesLineSeparators
                                                                              error:&error];

    NSArray* matches = [regexComments matchesInString:text options:0 range:NSMakeRange(0, text.length)];

    for (NSTextCheckingResult* match in matches){

        NSString *outer = [text substringWithRange:[match range]];
        if([outer hasPrefix:@"/*"] || [outer hasPrefix:@"//"]){
            [removes addObject:outer];
        }
    }

    for(NSString *match in [removes valueForKeyPath:@"@distinctUnionOfObjects.self"]){
        text = [text stringByReplacingOccurrencesOfString:match withString:@""];
    }

    return text;
}
于 2013-04-12T20:09:26.013 回答