1. 공백과 탭 제거(whitespaceCharacterSet)
NSString *newString = [oldString stringByTrimmingCharactersInSet:
[NSCharacterSet whitespaceCharacterSet]];
2. 공백과 탭 및 개행(newlines) 제거(whitespaceAndNewlineCharacterSet)
NSString *newString = [oldString stringByTrimmingCharactersInSet:
[NSCharacterSet whitespaceAndNewlineCharacterSet]];
반응형
'Programming > iOS - ObjC' 카테고리의 다른 글
NSArray내의 NSDictionary 그룹별로 추출하기 (2) | 2011.01.27 |
---|---|
UINavigationController - 이전 뷰로 이동 (0) | 2011.01.14 |
아이폰 흔들기(shaking) 검사 (0) | 2010.12.28 |
뷰의 터치이벤트 (0) | 2010.12.14 |
UINavigationController - 모달뷰 (0) | 2010.12.13 |
UITextField - 키보드 설정 (0) | 2010.12.13 |
UITableView - 자동으로 스크롤되면서 최상위로 이동 (0) | 2010.12.13 |
UIText - UITextAlignment 정렬스타일 (0) | 2010.12.13 |
UITableViewCell - UITableViewCellStyle 종류 (0) | 2010.12.13 |
UITableView - cell클릭했으때 색변화 (0) | 2010.12.02 |