네트워크 통신하다보면 응답 데이터를  텍스트로 받을 경우가 있다.


전문도 그렇게 오는데, 공백과 줄바꿈 항목을 trim하고 싶을 때 아래와 같이 사용하면 된다.



NSString *resStr = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];

resStr = [resStr stringByReplacingOccurrencesOfString:@" " withString:@""];     // 공백 제거

resStr = [[resStr componentsSeparatedByCharactersInSet:[NSCharacterSet newlineCharacterSet]] componentsJoinedByString:@""];     // 바꿈 제거




+ Recent posts