说我有这个文本:
word1 word2 " word3 //" word4
我需要为评论写一个正则表达式。我现在的解决方案((\/\/).*(\n))
是
下一个“”中文本的正则表达式((\").*(\"))
说我有这个文本:
word1 word2 " word3 //" word4
我需要为评论写一个正则表达式。我现在的解决方案((\/\/).*(\n))
是
下一个“”中文本的正则表达式((\").*(\"))
这是我的解决方案。我知道它可以更好。我知道反向引用,但我没有这方面的经验。
NSRegularExpression *exp = [NSRegularExpression regularExpressionWithPattern:@"((@\"|\").*?(\"))"
options:NSRegularExpressionDotMatchesLineSeparators
error:nil];
NSArray *textArr = [exp matchesInString:string options:0 range:NSMakeRange(0, [string length])];
for (NSTextCheckingResult *result in textArr) {
// set color for range
}
// Comments
exp = [NSRegularExpression regularExpressionWithPattern:@"(//[^\"\n]*)"
options:0
error:nil];
NSArray * arrayComments = [exp matchesInString:string options:0 range:NSMakeRange(0, [string length])];
for (NSTextCheckingResult *resultComment in arrayComments) {
BOOL inside = NO;
for (NSTextCheckingResult *resultText in textArr) {
NSInteger from = resultText.range.location;
NSInteger to = resultText.range.location+resultText.range.length;
NSInteger now = resultComment.range.location;
if (from < now && now < to) {
inside = YES;
break;
}
}
if (!inside) {
// set color for range
}
}