我試圖找到如何從「/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);
任何幫助,將不勝感激。
你能依賴圍繞字符串的格式嗎?它會永遠像你的榜樣嗎? –
是的,總是那樣的! –