Convert NSString into char array(将 NSString 转换为 char 数组)
问题描述
我有一个 char[]
类型的变量,我想在其中复制 NSString
值.如何将 NSString
转换为 char 数组?
I have a variable of type char[]
and I want to copy NSString
value in it. How can I convert an NSString
to a char array?
推荐答案
使用-[NSString UTF8String]
:
NSString *s = @"Some string";
const char *c = [s UTF8String];
您也可以使用 -[NSString cStringUsingEncoding:]
如果你的字符串是用非 UTF-8 编码的.
You could also use -[NSString cStringUsingEncoding:]
if your string is encoded with something other than UTF-8.
一旦你有了 const char *
,你就可以像使用 chars
数组一样使用它:
Once you have the const char *
, you can work with it similarly to an array of chars
:
printf("%c
", c[5]);
如果要修改字符串,请复制:
If you want to modify the string, make a copy:
char *cpy = calloc([s length]+1, 1);
strncpy(cpy, c, [s length]);
// Do stuff with cpy
free(cpy);
这篇关于将 NSString 转换为 char 数组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将 NSString 转换为 char 数组
- android 4中的android RadioButton问题 2022-01-01
- Android - 我如何找出用户有多少未读电子邮件? 2022-01-01
- 在测试浓缩咖啡时,Android设备不会在屏幕上启动活动 2022-01-01
- 使用自定义动画时在 iOS9 上忽略 edgesForExtendedLayout 2022-01-01
- Android - 拆分 Drawable 2022-01-01
- MalformedJsonException:在第1行第1列路径中使用JsonReader.setLenient(True)接受格式错误的JSON 2022-01-01
- Android viewpager检测滑动超出范围 2022-01-01
- 用 Swift 实现 UITextFieldDelegate 2022-01-01
- 如何检查发送到 Android 应用程序的 Firebase 消息的传递状态? 2022-01-01
- 想使用ViewPager,无法识别android.support.*? 2022-01-01