저는 Objective-C와의 정규식에서 매우 초록색입니다. 나는 그것에 어려움을 겪고있다.Objective-C NSRegularExpressions, 문자열에서 숫자의 첫 번째 항목을 찾습니다.
NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"\\b([1-9]+)\\b" options:NSRegularExpressionCaseInsensitive error:®Error];
if (regError) {
NSLog(@"%@",regError.localizedDescription);
}
__block NSString *foundModel = nil;
[regex enumerateMatchesInString:self.model options:kNilOptions range:NSMakeRange(0, [self.model length]) usingBlock:^(NSTextCheckingResult *match, NSMatchingFlags flags, BOOL *stop) {
foundModel = [self.model substringWithRange:[match rangeAtIndex:0]];
*stop = YES;
}];
내가 찾고 있어요 모든
150A
같은 문자열을 그리고
150
너무 완벽합니다. 고맙습니다! – rnystrom