我正在为以下行制作正则表达式:
Table 'Joella VIII' 6-max Seat #4 is the button
到目前为止,我有这个:
self.tableDetailsRegex = [NSRegularExpression regularExpressionWithPattern:@"Table '[A-Za-z0-9 ]*' [0-9]+-max Seat #[0-9]+ is the button" options:NSRegularExpressionAllowCommentsAndWhitespace error:nil];
if([self.tableDetailsRegex numberOfMatchesInString:line options:NSMatchingReportCompletion range:NSMakeRange(0, line.length)] == 1)
{
NSLog(@"%@", line);
}
所以,我的正则表达式是:
Table '[A-Za-z0-9 ]*' [0-9]+-max Seat #[0-9]+ is the button
而且我确信选定的行会在某个时候出现,因为我在我的代码中将所有行打印得更远......