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

字符串拼接,替换,比较 的方法

时间:2015-05-02 12:28:41      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

字符串的拼接

NSString *string1 = @"iphone";

string1 = [string1 stringByAppendingString:@"123"];

    

    NSLog(@"%@",string1);

字符串替换

string1 =[string1 stringByReplacingOccurrencesOfString:@"ip" withString:@"pi"];

    NSLog(@"%@",string1);

    

 字符串比较

 NSComparisonResult result = [string1 compare:@"asdffggg"]

    if (result == NSOrderedAscending) {

        NSLog(@"nihao");

    }

 

字符串拼接,替换,比较 的方法

标签:

原文地址:http://www.cnblogs.com/as5346/p/4471650.html

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