ここにコードがあります
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
それでもエラーは解決しません。このエラーが発生する理由と、それを削除する方法を誰でも説明できますか?