这是代码
NSError *error = nil;
NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+(?:[A-Z]{2}|com|org|net|edu|gov|mil|biz|info|mobi|name|aero|asia|jobs|museum)" options:NSRegularExpressionCaseInsensitive error:&error];
代码本身可以工作,但会发出以下警告:
"Unknown escape sequence \."
我还尝试了以下选项:
NSRegularExpressionCaseInsensitive|NSRegularExpressionAnchorsMatchLines
但错误仍然存在。谁能解释为什么会出现此错误以及如何将其删除。