码迷,mamicode.com
首页 > 其他好文 > 详细

将两个字符串连接起来

时间:2016-01-11 13:57:07      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:

 

 

#import <Foundation/Foundation.h>

 

int main(int argc, const char * argv[]) {

    @autoreleasepool {

       

        NSString *str1=@"pear",*str2=@"apple";

        

        NSString *newstr=[[NSString alloc]initWithFormat:@"拼接后%@ %@",str1,str2];

        NSString *newstr1=[str1 stringByAppendingString:str2];

        NSString *newstr2=[str1 stringByAppendingFormat:@"-%@",str2];

        NSLog(@"%@",newstr2);

    }

    return 0;

}

 

将两个字符串连接起来

标签:

原文地址:http://www.cnblogs.com/jidezhi/p/5120760.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!