「 /games/usa/2013-05-01/game1.html」から「2013-05-01/game1 」を抽出する方法を見つけようとしていますが、その方法がわかりません。私はすでにいくつかの正規表現を試しましたが、うまくいきませんでした。また、これが最善の方法であるかどうかもわかりません。これは私がこれまでに試したことです。
NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"/[0-9]{4}-[0-9]{2}-[0-9]-{2}\//\.*$)" options:NSRegularExpressionCaseInsensitive error:NULL];
NSTextCheckingResult *newSearchString = [regex firstMatchInString:opening_time options:0 range:NSMakeRange(0, [opening_time length])];
NSString *substr = [opening_time substringWithRange:newSearchString.range];
NSLog(@"%@", substr);
どんな助けでも大歓迎です。