아이 폰 개발 - 정규 표현 식 사용
2096 단어 아이 폰 개발
보다. http://www.cnblogs.com/chenfulai/archive/2011/08/10/2133642.html
검증 하지 않 았 습 니 다. 제 프로젝트 는 복잡 한 일치 가 필요 하지 않 습 니 다. 도입 할 필요 가 없습니다.
2. NSPredicate ios 3.0 지원 시작
NSString * regex = @"[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+(\\.[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+)*@([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,6}";
NSPredicate * pred = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", regex];
BOOL isMatch = [pred evaluateWithObject:@"[email protected]"];
if(isMatch){
NSLog(@" ");
}else{
NSLog(@" ...");
}
3. NSRegularExpression ios 4.0 지원 시작
보다.http://285746555.blog.51cto.com/2966432/554755