반응형
예를 들어, 문자열을 4자리씩 끊어야 할 경우,
NSString *number = @"1234567890";
NSError *error = NULL;
NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@".{1,4}" options:0 error:&error];
NSArray *matches = [regex matchesInString:number options:0 range:NSMakeRange(0, [number length])];
for (NSTextCheckingResult *match in matches)
{
NSLog(@"%@", [number substringWithRange:match.range]];
}
결과는
1234
5678
90
반응형
'기술 > iOS' 카테고리의 다른 글
Audio route 변경 시 Notification 수신 방법 (0) | 2016.06.10 |
---|---|
Headphone 이용 시 앱에서 이벤트 수신 방법. (0) | 2016.06.10 |
XCode 6 Simurator Keyboard에서 한글 나오도록 셋팅하기. (0) | 2015.02.10 |
XCode에서 메모리 영역 보기. (0) | 2014.04.09 |
UIWebView에서 내부 웹페이지의 크기를 알고 싶을 때. (0) | 2014.01.20 |