Objective-C字符串

Posted 小兔无情

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Objective-C字符串相关的知识,希望对你有一定的参考价值。

(1)创建字符串

NSString* str = @"Hello World";

NSString* str = [ [NSString alloc] initWithUTF8String:"Hello World"]; //C语言字符串

NSString* str = [ [NSString alloc] initWithFormat: @"Hello %d", 10];

还可以利用initWithData:encoding:直接解码二进制数据

 

(2)字符串转换成其它数据类型

NSString* str = @"100";

int intVar = str.intValue;

其它数据类型相似的方法。

 

(3)字符串连接

NSString* str = @"Hello";

NSString* str1 = [ [str stringByAppendingString:@" World"];

还可以利用stringByAppendingFormat等等。

 

(4)字符串的截取

NSString* str = @"Hello World";

NSString* str1 = [str substringToIndex:5]; //取前五个字符

NSString* str1 = [str substringFromIndex:6]; //取后五个字符,注意index是6

NSRange r = {1,2}; //or NSRangeFromString(@"{1,2}")

NSString* str1 = [str substringWithRange:r];

 

注:在MAC上查看帮助文档的方式是三指点击类型,或者选中类型在help菜单中选择quick help for selected item

 

以上是关于Objective-C字符串的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Objective-C 中将字符串转换为整数? [复制]

Objective-C - 为啥添加两个字符串会导致崩溃?

Objective-C中的Url减去查询字符串

将 Objective-C / iOS 字符串转换为 URL 的正确语法是啥? [关闭]

Objective-C 右填充

Objective-C,将变量值分配给 plist 字符串