ObjectiveC开发教程--字符串的连接
Posted mthoutai
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ObjectiveC开发教程--字符串的连接相关的知识,希望对你有一定的参考价值。
NSString *type = @"hello";
NSString *subtype = @"good";
NSString *typesub = [NSString stringWithFormat:@"%@>%@",type,subtype];
NSString *typesub1 = [type stringByAppendingString:subtype];
NSString *typesub2 = [type stringByAppendingFormat:@"%@>%@",type,subtype];
NSString *a= @"abc" ;
NSString *typesub3 = [type stringByAppendingFormat:@"%@>%@>%@" ,type,subtype,a];
NSLog(@"%@,%@,%@,%@",typesub,typesub1,typesub2,typesub3,typesub3);
以上是关于ObjectiveC开发教程--字符串的连接的主要内容,如果未能解决你的问题,请参考以下文章
ObjectiveC开发教程--如何去除字符串中的空格和回车
ObjectiveC开发教程--如何去除字符串中的空格和回车
ObjectiveC开发教程--如何判断字符串是否为空的方法