我正在努力绕过一些正则表达式以匹配某些日期格式。理想情况下,我希望一个表达式与每种日期格式匹配,我正在搜索电子邮件中的所有日期。
格式如:
Wednesday, 6 November 2013
Weds 6th November 2013
Weds 6th Nov 2013
06/11/2013
11/06/2013
06/11/13
11/06/13
6th Nov 2013
6th November 2013
任何人都知道我可以使用的一个表达式吗?
答案 0 :(得分:5)
感谢Wain的回答我使用此代码而不是NSRegularExpression来查找字符串中的日期,希望它可以帮助任何有类似问题的人。
NSError *error = NULL;
NSDataDetector *detector = [NSDataDetector dataDetectorWithTypes:(NSTextCheckingTypes)NSTextCheckingTypeDate error:&error];
NSArray *matches = [detector matchesInString:string
options:0
range:NSMakeRange(0, [string length])];
for (NSTextCheckingResult *match in matches) {
if ([match resultType] == NSTextCheckingTypeDate) {
NSDate *date = [match date];
NSDateFormatter *formatter;
NSString *dateString;
formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"dd-MM-yyyy HH:mm"];
dateString = [formatter stringFromDate:date];
NSLog(@"Date: %@",dateString);
}}
答案 1 :(得分:3)
考虑使用NSDataDetector
可以配置为扫描日期(NSTextCheckingTypeDate
)。文档here。
答案 2 :(得分:0)
你可以用几个字符串写正则表达式 你也可以测试正则表达式 http://regexpal.com 因为你在表达式中删除了\例如它的不同之处 (\ d {2})([。/ - ])(\ d {2})([。/ - ])(\ d {2,4})
NSError *error = NULL;
NSString *expForSlash = @"(\\d{2})((\/)|(\.))(\\d{2})((\/)|(\.))(\\d{4}|\\d{2})";
NSString *expMonthStrNew = @"(Jan|Feb|Mar(ch)?|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)(\\s?)(\\d{2}|\\d{1})(\,?)(\\s?)(\\d{4}|\\d{2})";
NSString *expForreg = [NSString stringWithFormat:@"%@|%@", expForSlash, expMonthStrNew];//@"(May|Jun)(\\s?)(\\d{2})(\,?)(\\s?)(\\d{4})";
NSRegularExpression *regex = [NSRegularExpression
regularExpressionWithPattern:expForreg
options:NSRegularExpressionCaseInsensitive
error:&error];
NSArray *matches = [regex matchesInString:tesText options:0 range:NSMakeRange(0, [tesText length])];
答案 3 :(得分:0)
改善尼尔福克纳的反应。
如果您想以本地化格式获取日期:
NSError *error = nil;
NSDataDetector *detector = [NSDataDetector dataDetectorWithTypes:(NSTextCheckingTypes)NSTextCheckingTypeDate error:&error];
NSArray *matches = [detector matchesInString:value
options:0
range:NSMakeRange(0, [value length])];
for (NSTextCheckingResult *match in matches)
{
if ([match resultType] == NSTextCheckingTypeDate)
{
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
formatter.locale = [NSLocale currentLocale];
formatter.dateStyle = NSDateFormatterShortStyle;
response = [formatter stringFromDate:[match date]];
}
}