iOS NSString与char *互相转换

NSStringchar *

1. UTF8String

const char *cString = [string UTF8String];

2. cStringUsingEncoding:

const char *cString = [string cStringUsingEncoding:NSUTF8StringEncoding];

3. getCString:maxLength:encoding:

char cStringPtr[string.length * 3 + 1];
memset(cStringPtr, 0, sizeof(cStringPtr));
[string getCString:cStringPtr maxLength:sizeof(cStringPtr) encoding:NSUTF8StringEncoding];

UTF8编码需要占用3个字节,因此这里需要*3

- (BOOL)getCString:(char *)buffer maxLength:(NSUInteger)maxBufferCount encoding:(NSStringEncoding)encoding;
// NO return if conversion not possible due to encoding errors or too small of a buffer. The buffer should include room for maxBufferCount bytes; this number should accomodate the expected size of the return value plus the NULL termination character, which this method adds. (So note that the maxLength passed to this method is one more than the one you would have passed to the deprecated getCString:maxLength:.) Use only with 8-bit encodings, and not encodings such as UTF-16 or UTF-32.

如果buffer太小,会导致转换出错

char*NSString

1. initWithUTF8String:

NSString *string = [[NSString alloc] initWithUTF8String:cString];

2. initWithCString:encoding:

NSString *string = [[NSString alloc] initWithCString:cString encoding:NSUTF8StringEncoding];
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容